From 269da88a42afa4c1217ed8b229bb9a216df507ac Mon Sep 17 00:00:00 2001 From: Dheeraj7272 <87297232+Dheeraj7272@users.noreply.github.com> Date: Sat, 30 Oct 2021 11:57:10 +0530 Subject: [PATCH] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index 126059b..4c40912 100644 --- a/hello.py +++ b/hello.py @@ -1,7 +1,7 @@ import time def Hello(): for i in range(5): - print("Hello World!") + print("Hey there!") time.sleep(2) Hello()