cmd commands for c++ programm run code example
Example 1: how to execute bash commands in python script
import subprocess
subprocess.call(["sudo", "apt", "update"])
Example 2: python how to run terminal command
#By Uku Loskit
import os
os.system("ls -l")