You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking which operating system is used can also be done with libraries instead of string comparison:
Possible solution
from sys import platform
if platform == "linux" or platform == "linux2":
# linux
elif platform == "darwin":
# OS X
elif platform == "win32":
# Windows...
The text was updated successfully, but these errors were encountered:
Problem
Checking which operating system is used can also be done with libraries instead of string comparison:
Possible solution
The text was updated successfully, but these errors were encountered: