Answers for "python open new terminal and run command"

0

python open script in new terminal

import subprocess
subprocess.call('python full_pathfile_name.py', creationflags=subprocess.CREATE_NEW_CONSOLE)
Posted by: Guest on May-25-2021
8

python how to run terminal command

#By Uku Loskit

import os
os.system("ls -l")
Posted by: Guest on January-09-2020

Code answers related to "python open new terminal and run command"

Python Answers by Framework

Browse Popular Code Answers by Language