Answers for "identify os python"

2

check the os in python

from sys import platform
if platform == "linux" or platform == "linux2":
    # linux
elif platform == "darwin":
    # OS X
elif platform == "win32":
    # Windows...
Posted by: Guest on June-18-2020
3

get os information python

>>> import platform
>>> platform.platform()
'Linux-3.3.0-8.fc16.x86_64-x86_64-with-fedora-16-Verne'
Posted by: Guest on October-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language