From c71ef44b0128e7d5b14f18e0f1c85e416de9ac32 Mon Sep 17 00:00:00 2001 From: tauseef-a <40712942+tauseef-a@users.noreply.github.com> Date: Tue, 28 Sep 2021 15:41:37 +0530 Subject: [PATCH] Update hello_world.py --- scripts/hello_world.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/hello_world.py b/scripts/hello_world.py index 48e7373..68d426a 100644 --- a/scripts/hello_world.py +++ b/scripts/hello_world.py @@ -23,6 +23,10 @@ def Main(): myThread.start() # Starting a thread fp = open("def.txt") fp.close() + ilist = None + for i in range(300): + ilist[i] = i*i + if __name__ == '__main__':