From 464cb584605afdac5218163a37af3f103a51fce1 Mon Sep 17 00:00:00 2001 From: tauseef-a <40712942+tauseef-a@users.noreply.github.com> Date: Tue, 28 Sep 2021 15:31:18 +0530 Subject: [PATCH] Update hello_world.py --- scripts/hello_world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/hello_world.py b/scripts/hello_world.py index 48e7373..fc4d613 100644 --- a/scripts/hello_world.py +++ b/scripts/hello_world.py @@ -22,7 +22,8 @@ def Main(): myThread = threading.Thread(target=MyFunction) myThread.start() # Starting a thread fp = open("def.txt") - fp.close() + #fp.close() + z=5/0 if __name__ == '__main__':