# for loop >>> for i in range(5): ... print(i) 1 2 3 4 >>> while True: ... print("hello") hello hello hello hello etc