I'm new to python, I have three python script pyapp_1.py , pyapp_2.py ,pyapp_3.py in same dir . I want to make a file like run.py where I take input from user like this:
press 1 to run pyapp_1.py
press 2 to run pyapp_2.py
press 3 to run pyapp_3.py
if user press 1 only pyapp_1.py should run .
how can i do this, Thanks.