Verwenden Sie sys.platform
. Weitere Informationen finden Sie hier http://docs.python.org/library/platform.html
siehe hier:https://stackoverflow.com/a/58689984/3752715
import platform
plt = platform.system()
if plt == "Windows": print("Your system is Windows")
elif plt == "Linux": print("Your system is Linux")
elif plt == "Darwin": print("Your system is MacOS")
else: print("Unidentified system")
Sie können mein Github-Repo https://github.com/sk3pp3r/PyOS sehen und das pyos.py-Skript verwenden
Ich benutze normalerweise nur das:
import os
if os.name == 'nt':
pass # Windows
else:
pass # other (unix)
Bearbeiten:
Hoffentlich als Antwort auf Ihre Kommentare:
from time import strftime
import os
if os.name == 'nt': # Windows
basePath = 'C:\\working\\'
else:
basePath = '/working/'
Fn = '%sSetup%s.csv' % ( basePath, strftime( '%y%m%d' ) )