From 97f74ae1f16dead4270558b2ea2f4d03923f783d Mon Sep 17 00:00:00 2001 From: KylusheL Date: Thu, 9 Sep 2021 20:08:06 +0900 Subject: [PATCH] moved time.sleep(2) into bye_world function --- world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world.py b/world.py index 06d80b5..11afe89 100644 --- a/world.py +++ b/world.py @@ -5,10 +5,10 @@ def hello_world(): print("hello world") def bye_world(): + time.sleep(2) print("bye world") if __name__ == "__main__": hello_world() - time.sleep(2) bye_world()