how to run a python command from python script code example
Example 1: execute command in python script
import os
os.system("ma Commande")
#Exemple:
os.system("cd Documents")
Example 2: how to run python program
move to the directory where your program lies
open cmd
python first_script.py(your file name)