“Überprüfen Sie OS Python” Code-Antworten

Python Check ist Betriebssystem ist Windows

from sys import platform
if platform == "linux" or platform == "linux2":
    # linux
elif platform == "darwin":
    # OS X
elif platform == "win32":
    # Windows...
Relieved Reindeer

Python -Check -Betriebssystem

from sys import platform
if platform == "linux" or platform == "linux2":
    # linux
elif platform == "darwin":
    # OS X
elif platform == "win32":
    # Windows...
Testy Tarantula

Überprüfen Sie OS Python

>>> import platform
>>> platform.system()
'Windows'
>>> platform.release()
'XP'
>>> platform.version()
'5.1.2600'
NA RACE

Ähnliche Antworten wie “Überprüfen Sie OS Python”

Fragen ähnlich wie “Überprüfen Sie OS Python”

Weitere verwandte Antworten zu “Überprüfen Sie OS Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen