platform-agnostic

How to identify on which OS Python is running on?

How to identify which OS Python is running on Question: What do I need to look at to see whether I’m on Windows or Unix, etc.? Asked By: Mark Harrison || Source Answers: >>> 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: …

Total answers: 27