for i in range(10): # Iterates from 0 to 9 print(i) print("Having fun?") print("That's all folks") print("Go to have ice cream now") p = ['pizza', 'banana', 'kiwi'] for i in p: print(i) for c in 'hello, world': print(c, c) s = 'hello, world' for i, c in enumerate(s): print(f"character #{i+1} of '{s}': {c}")