From 13b51a95062531e1ae9ba2360ecb8230905df35c Mon Sep 17 00:00:00 2001 From: davekjh <70695197+davekjh@users.noreply.github.com> Date: Thu, 10 Sep 2020 18:47:50 +0900 Subject: [PATCH] Update world.py --- world.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/world.py b/world.py index 8946863..2a6d2a1 100644 --- a/world.py +++ b/world.py @@ -1,11 +1,13 @@ # world.py file +import time def hello_world(): - print("hello world") + print(“hello world”) def bye_world(): - print("bye world") - -if __name__ == "__main__": - hello_world() - bye_world() + time.sleep(2) + print(“bye world”) + +if __name__ == “__main__”: + hello_world() + bye_world()