how to do input usage command in linux code example
Example 1: how to run linux command in python
import os
cmd = 'your command here'
os.system(cmd)
Example 2: command to edit in terminal linux
type nano followed by the file name
import os
cmd = 'your command here'
os.system(cmd)
type nano followed by the file name