Answers for "python get os"

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
0

python get os

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'
Posted by: Guest on July-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language