diff --git a/scripts/hello_world.py b/scripts/hello_world.py index 48e7373..7e3a776 100644 --- a/scripts/hello_world.py +++ b/scripts/hello_world.py @@ -22,7 +22,9 @@ def Main(): myThread = threading.Thread(target=MyFunction) myThread.start() # Starting a thread fp = open("def.txt") - fp.close() + print("File opened success") + ilist = ['apple','cat','bat'] + ilist.append('dog') if __name__ == '__main__':