The code:
count = 0
oldcount = 0
for char in inwords:
if char == " ":
anagramlist.append(inwords[oldcount, count])
oldcount = count
count = 0
else:
count += 1
the error:
Traceback (most recent call last):
File "C:/Users/Knowhaw/Desktop/Python Programs/Anagram solver/HTS anagram.py", line 14,
in <module>
anagramlist.append(inwords[oldcount, count])
TypeError: string indices must be integers
what the hell is going on? count and oldcount are obviously ints, yet the error says they aren't
I can even write
anagramlist.append(inwords[int(oldcount), int(count)])
and get the same error
Like in Icon, substrings can be specified with the slice notation: two indices separated by a colon. >>> >>> word[4] 'A' >>> word[0:2] 'He' >>> word[2:4] 'lp'– 0xc0de Jan 21 '12 at 14:04