python open cmd code example
Example 1: how to run cmd line commands in python
import os
os.system("javac lolol.java")# or something....
Example 2: how to run python in cmd
$ python3 hello.py
Hello World!
import os
os.system("javac lolol.java")# or something....
$ python3 hello.py
Hello World!