How to Make the Program to Rerun Itself in Python

How to make a script automatically restart itself?

It depends on what you mean by "restart itself." If you just want to continuously execute the same code, you can wrap it in a function, then call it from within a while True loop, such as:

>>> def like_cheese():
... var = input("Hi! I like cheese! Do you like cheese?").lower() # Corrected the call to `.lower`.
... if var == "yes":
... print("That's awesome!")
...
>>> while True:
... like_cheese()
...
Hi! I like cheese! Do you like cheese?yes
That's awesome!
Hi! I like cheese! Do you like cheese?yes
That's awesome!

If you want to actually restart the script you can execute the script again, replacing the current process with the new one by doing the following:

#! /bin/env python3
import os
import sys

def like_cheese():
var = input("Hi! I like cheese! Do you like cheese?").lower()
if var == "yes":
print("That's awesome!")

if __name__ == '__main__':
like_cheese()
os.execv(__file__, sys.argv) # Run a new iteration of the current script, providing any command line args from the current iteration.

This will continuously re-run the script, providing the command line arguments from the current version to the new version. A more detailed discussion of this method can be found in the post "Restarting a Python Script Within Itself" by Petr Zemek.

One item that this article notes is:

If you use the solution above, please bear in mind that the exec*()
functions cause the current process to be replaced immediately,
without flushing opened file objects. Therefore, if you have any
opened files at the time of restarting the script, you should flush
them using f.flush() or os.fsync(fd) before calling an exec*()
function.

Restart python-script from within itself

You're looking for os.exec*() family of commands.

To restart your current program with exact the same command line arguments as it was originally run, you could use the following:

os.execv(sys.argv[0], sys.argv)

Is there a way to rerun a python program from within the same program?

You can create a function of the game and run it, like this:

def game():
print('GAME STUFF')

active = True
while active:
game()
restart = input("\n Do you want to restart the program? [y/n] > ")

if restart.lower() == "n":
active = False

Here you create a game loop that calls your function game and when finished if player doesn't want to continue it can end the game, and it ends game loop.

How can i make the program to rerun itself in python?

Loop over that code and break when you want to stop repeating:

while True: # Will start repeating here
num1 = input("Enter your 1st number: ")
num2 = input("Enter your 2nd number: ")
choose_ope = input("Choose your operator: ")
if choose_ope == '+':
print(float(num1) + float(num2))
elif choose_ope == '-':
print(float(num1) - float(num2))
elif choose_ope == '*':
print(float(num1) * float(num2))
elif choose_ope == '/':
print(float(num1) / float(num2))

go_again = input("Do you want to go again ? : Y/N\n")
if go_again != 'Y':
print("OK!! Exiting")
break # break to leave the loop

# It will loop automatically back to the top otherwise

Python restart program

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)

os.execl(path, arg0, arg1, ...)

sys.executable: python executeable

os.path.abspath(__file__): the python code file you are running.

*sys.argv: remaining argument

It will execute the program again like python XX.py arg1 arg2.



Related Topics



Leave a reply



Submit