From ea06756e0195720b3a6009ae0b9a8c75c1732d70 Mon Sep 17 00:00:00 2001 From: jongtaeklho Date: Thu, 10 Sep 2020 19:41:22 +0900 Subject: [PATCH] bye world after 2secs(issue1) --- world.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/world.py b/world.py index 8946863..5ca6eb9 100644 --- a/world.py +++ b/world.py @@ -1,5 +1,7 @@ # world.py file +import sleep + def hello_world(): print("hello world") @@ -8,4 +10,5 @@ def bye_world(): if __name__ == "__main__": hello_world() + sleep(2) bye_world()