Starting with class Sentence, I'm trying to create multiple methods that will print all the words in a string, return a word at an index, and replace a word at an index (and more). I'm having trouble understanding the use of self throughout the methods and calling methods at the end.
class Sentence:
def __init__(self, sentence = ''):
'''default value for private attribute (sentence) = empty string'''
self._sentence_str = sentence
def get_all_words(self):
'''return all words in the sentence as a list'''
self.s.split(" ")
return self.s
def get_word(self, param):
'''return only the word at a particular index'''
'''arguments = index'''
#Here, do I return an empty index so that I can call it/pick an index
at the end?
_sentence = Sentence("It feels like fall today")
print(_sentence)
index = self.index[2] #something like this? and print it?
you can't simply return self.s, you should return the whole self.sentence_str.split(" ") or assign it to a variable like I did, It doesn't make any difference tho.