how to run command line commands in python code example

Example 1: execute command in python script

import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")

Example 2: python run command

import os
os.system('cmd /k "Your Command Prompt Command"')

Example 3: get python to run cli commands

import os
sequence = (
	"git init",
  	"git add ."
)

for i, x in enumerate(sequence):
  print("{}. RUNNING: [{}]".format(i, x))
  os.system(x)
  
#short explanation
"""
	1) Init sequence
    2) Loop through sequence and use `os.system()` to run commands
"""