from time import sleep i = 0 while True: print(f"Hello {i}") i += 1 sleep(1)