execute command in windows bash from python code example
Example: how to execute a cmd command in python
CMD /K - execute a command then remain
import os
os.system('cmd /k "Your Command Prompt Command"')
CMD /K - execute a command then remain
import os
os.system('cmd /k "Your Command Prompt Command"')