Skip to content

Pause The Programme

upizpp edited this page Jan 13, 2024 · 1 revision

Pause

Use os.system("pause") to pause the program. This function is defined in the `os' module. You must use this function in every program (if you don't, the program will not work).

import os;
os.system("pause");
Clone this wiki locally