If you run the Python py file and enter all the input values, the output does not come out and it just turns off

Asked 2 years ago, Updated 2 years ago, 18 views

The code made with Python in vscode runs well in vscode If you save ~~.py to your desktop and run it, it will turn off without output when you finish entering the input value And if you really simply run the code print ("asd"), the window opens and turns off in 0.1 seconds How do I solve this?

python

2022-09-20 15:17

1 Answers

from time import sleep

# Add code at the end
sleep(60)


2022-09-20 15:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.