Operating System Control
import os
if os.uname().sysname == 'Linux':
print("Valid Operating System : {}".format(os.uname().version) )
else:
print("Not supported operating system.")INFO
import os
if os.uname().sysname == 'Linux':
print("Valid Operating System : {}".format(os.uname().version) )
else:
print("Not supported operating system.")