from time import sleep def main(): while True: print('Hello, World!') sleep(1) if __name__ == '__main__': main()