What do I need to look at to see whether I'm on Windows or Unix, etc?
>>> import os >>> os.name 'posix' >>> import platform >>> platform.system() 'Linux' >>> platform.release() '2.6.22-15-generic'
The output of platform.system() is as follows:
platform.system()
Linux
Darwin
Windows
See: platform — Access to underlying platform’s identifying data
platform
1.4m articles
1.4m replys
5 comments
57.0k users