# Examples of iterables in Python numbers = [1, 2, 3, 4, 5] for num in numbers: print(num) name = "John" for char in name: print(char)