TypeError: list indices must be integers, not str | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

TypeError: list indices must be integers, not str

i try something that looks like this(the actual code is too long) number = 100 list = [] #get 25 out of the number and append it to the list while number > 25: number = number - 25 list.append(25) #if there are still numbers append that number to the list if number > 0: list.append(number) #loop trough all the items in the list for x in range(len(list)): do thing with numbers n the list

11th Feb 2017, 1:49 PM
Yunus Kaya
Yunus Kaya - avatar
0 Answers