Skip to content

Pause The Programme

gene-2012 edited this page Jan 6, 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