Python實現擷取作業系統版本資訊方法_python

來源:互聯網
上載者:User

最近,想在我的YouMoney(http://code.google.com/p/youmoney/)裡面增加提取使用者作業系統版本資訊。比如windows使用者,可能要返回Windows XP ,或者Windows 2003, 蘋果使用者應該返回Mac OS X 10.5.8。用了很多辦法,包括在mac系統裡調用系統命令,取環境變數,等等。最後無意發現,原來python裡裡面有個platform模組就可以幹這件事情。省事啊!

mac上這麼幹

複製代碼 代碼如下:

localhost:~ apple$ python
Python 2.5.1 (r251:54863, Jun 17 2009, 20:37:34)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.mac_ver()
('10.5.8', ('', '', ''), 'i386')
>>> platform.version()
'Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386'
>>> platform.platform()
'Darwin-9.8.0-i386-32bit'
>>> platform.system()
'Darwin'
>>>

基本上用platform.platform()就足夠了。如果是在windows上,專門還有個platform.win32_ver() 可用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.