Hey I am new to programming with python and just want that this code printing out every number in range 0 and 100 that has the digit 9 in it, but I always get this message: argument of type 'int' is not iterable
for i in range(0, 100):
if 9 in i:
print(i)
So what I expect is that my code will return:
9 19 29 39 49 59 69 79 89 90 91 92 93 94 95 96 97 98 99