Answers for "Sys Gets os name ,which u using"

0

Sys Gets os name ,which u using

if sys.platform.startswith('freebsd'):
    # FreeBSD-specific code here...
elif sys.platform.startswith('linux'):
    # Linux-specific code here...
elif sys.platform.startswith('aix'):
    # AIX-specific code here...
Posted by: Guest on May-30-2021
0

Sys Gets os name ,which u using

if sys.platform.startswith('freebsd'):
    # FreeBSD-specific code here...
elif sys.platform.startswith('linux'):
    # Linux-specific code here...
elif sys.platform.startswith('aix'):
    # AIX-specific code here...
Posted by: Guest on May-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language