Now Consider the following idea
I'm declaring a if/elif
type to run the program
Such as :
number=int(input("Enter a number :"))
If number ==0
Run program.py
Elif number ==1
Run Program2.py
Else number ==2
Run Program3.py
Now clearly the command run program.py
doesn't work so what should I do to make it execute program.py
incase it is selected and close the main program where we are choosing the number?