Hello.
mylist = [6, '/', 3, '+', 9, '+', 8, '+', 1, '/', 2]
How can i delete that list indexes?
I tried:
def clear(self, event):
global numbers
for i in numbers:
print i
del numbers[i]
But it didn't work:
File "./kivycal", line 83, in clear
del numbers[i]
TypeError: list indices must be integers, not str
What can i do for that?