有沒有什麼辦法可以檢查python 2.7運行的是哪個平臺? 例如使用平臺模塊:如何檢查在Python 2.7中運行的平臺(OS)?
import platform
print platform.system()
print platform.release()
我得到:
Linux
2.6.32-312-ec2
但隨着Linux的命令,我可以得到什麼平臺進出口運行:
import command
print commands.getoutput('cat /etc/issue')
。
Debian GNU/Linux 6.0 \n \l
是否有任何其他方式在Python中知道運行Debian GNU Linux 6.0的即時通訊?
是什麼'''sys.platorm'''幫你嗎? – wnnmaw
'python -mplatform'或'platform.platform()'中的代碼 – jfs
相關:[何時使用os.name,sys.platform或platform.system?](http://stackoverflow.com/q/4553129/4279) – jfs