I have just started with Python. When I execute a python script file on Windows, the output window appears but instantaneously goes away. I need it to stay there so I can an
A simple hack to keep the window open:
counter = 0 While (True): If (counter == 0): # Code goes here counter += 1
The counter is so the code won’t repeat itself.