text = "Hello World" for i in text: print(i) #Output #H, e, l, l, o, , W, o, r, l, d for i in range(10): print(i) #1, 2, 3, 4, 5, 6, 7, 8, 9, 10