Guest User

Untitled

a guest
Oct 16th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. def getSlice(self,x,y):
  2. return self.sentence[x,y]
  3.  
  4.  
  5. print(Sentence1.getSlice(0,12))
  6.  
  7. Traceback (most recent call last):
  8. File "C:/Users/michael/Desktop/Python homework/Assgn16/1question.py", line 24, in <module>
  9. print(Sentence1.getSlice(0,12))
  10. File "C:/Users/michael/Desktop/Python homework/Assgn16/1question.py", line 8, in getSlice
  11. return self.sentence[x,y]
  12. TypeError: string indices must be integers
Add Comment
Please, Sign In to add comment