怎麼看python包的版本

at_1發表於2021-09-11

怎麼看python包的版本

檢視模組的版本有兩種方法,具體如下
1.模組名.version:

>>> import requests
>>> requests.__version__
'2.18.4'

2.help(模組名) 看大概倒數的 VERSION 即版本號

>>>help(requests)
...
VERSION
    2.18.4

AUTHOR
    Kenneth Reitz

FILE
    d:pythonpython35libsite-packagesrequests__init__.py

更多學習內容,請點選。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1817/viewspace-2835859/,如需轉載,請註明出處,否則將追究法律責任。

相關文章