Answers for "executing main function of a py file from another py files"

6

run py file in another py file

os.system('python my_file.py')
Posted by: Guest on April-13-2020
12

python main

if __name__ == "__main__":
    # execute only if run as a script
    main()
Posted by: Guest on May-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language