Lets supose I have a function that makes add bigger spaces to my text.
def bigger_spaces(text):
text = list(text)
print(' '.join(text))
To execute it, i need to do bigger_spaces(my_text)
. how can I execute like this:
my_text.bigger_spaces()
I know I can make a class but then I have to add the string to that class first