Python判断操作系统类型代码分享
经常地我们需要编写跨平台的脚本,但是由于不同的平台的差异性,我们不得不获得当前所工作的平台(操作系统类型)。
代码如下:
importplatform
defTestPlatform(): print("----------OperationSystem--------------------------") #Windowswillbe:(32bit,WindowsPE) #Linuxwillbe:(32bit,ELF) print(platform.architecture())
#Windowswillbe:Windows-XP-5.1.2600-SP3orWindows-post2008Server-6.1.7600 #Linuxwillbe:Linux-2.6.18-128.el5-i686-with-redhat-5.3-Final print(platform.platform())
#Windowswillbe:Windows #Linuxwillbe:Linux print(platform.system())
print("--------------PythonVersion-------------------------") #WindowsandLinuxwillbe:3.1.1or3.1.3 print(platform.python_version())
defUsePlatform(): sysstr=platform.system() if(sysstr=="Windows"): print("CallWindowstasks") elif(sysstr=="Linux"): print("CallLinuxtasks") else: print("OtherSystemtasks") UsePlatform()