1
我想知道sys.platform在python中做了些什麼以及它的用途。我想要使用哪種類型的項目?什麼是在python中使用的sys.platform?
我想知道sys.platform在python中做了些什麼以及它的用途。我想要使用哪種類型的項目?什麼是在python中使用的sys.platform?
sys.platform
讓你檢查代碼運行在哪個操作系統/平臺上。例如,在與操作系統的非Python方面接口的項目中,這可能非常有用。有關於可能的值here的詳細信息。
編輯:this search顯示人們如何在github上使用sys.platform
。
lso請看看這個問題http://stackoverflow.com/questions/4553129/when-to-use-os-name-sys-platform-or-platform-system – PyNEwbie