From 15a29753e728bd209346bf65af77aee11e745dba Mon Sep 17 00:00:00 2001 From: uzrjny Date: Thu, 9 Sep 2021 19:58:37 +0900 Subject: [PATCH] bye world after 2 seconds(issue #1) --- world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/world.py b/world.py index 06d80b5..8954a12 100644 --- a/world.py +++ b/world.py @@ -5,10 +5,11 @@ def hello_world(): print("hello world") def bye_world(): + time.sleep(2) print("bye world") if __name__ == "__main__": hello_world() - time.sleep(2) + #time.sleep(2) bye_world()