Answers for "python open a new terminal window"

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
0

open terminal in python

# Open terminal 
# Type python with version
# Example
# 1. ~$ python
# 2. ~$ python3
Posted by: Guest on August-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language