def restart program() code example
Example 1: os.execl(sys.executable, sys.executable, *sys.argv)
import os
import sys
restart = input("\nDo you want to restart the program? [y/n] > ")
if restart == "y":
os.execl(sys.executable, os.path.abspath(__file__), *sys.argv)
else:
print("\nThe program will be closed...")
sys.exit(0)
Example 2: how to restart program in python
import os
import sys
os.execl(sys.executable, sys.executable, *sys.argv)