I keep getting this error for my simple python program: “TypeError: 'float' object cannot be interpreted as an integer”
You can use the below-mentioned code for that:-
for i in range(c/10):
You're creating a float as a result - to fix this use the int division operator:
for i in range(c // 10):