Created
October 23, 2020 01:24
-
-
Save Everfighting/22550bf8fb4ebe2ed14496690fdc04aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import platform | |
if platform == "linux" or platform == "linux2": | |
# linux | |
elif platform == "darwin": | |
# OS X | |
elif platform == "win32": | |
# Windows... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment