command to display os name in linux code example
Example 1: how to run linux command in python
import os
cmd = 'your command here'
os.system(cmd)
Example 2: name screen in linux
screen -S your_session_name
import os
cmd = 'your command here'
os.system(cmd)
screen -S your_session_name