您好,登錄后才能下訂單哦!
這篇文章主要介紹“python的sys系統(tǒng)模塊和logging日志模塊怎么用”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“python的sys系統(tǒng)模塊和logging日志模塊怎么用”文章能幫助大家解決問題。
sys模塊
輸入:
#!/usr/bin/python
# Filename: versioncheck.py
import sys, warnings
print(sys.version_info)
if sys.version_info[0] < 3:
warnings.warn("Need Python 3.0 for this program to run", RuntimeWarning)
else:
print('Proceed as normal')
輸出:
$ python2.5 versioncheck.py
(3, 0, 0, 'beta', 2)
versioncheck.py:6: RuntimeWarning: Need Python 3.0 for this program to run RuntimeWarning) $ python3 versioncheck.py Proceed as normal
解釋:
系統(tǒng)模塊,可以獲取系統(tǒng)的版本信息,我們可以通過使用if語句來做判斷,版本信息。
sys.version_info 輸出版本信息
logging 模塊
輸入:
#!/usr/bin/python
# Filename: use_logging.py
import os, platform, logging
if platform.platform().startswith('Windows'):
logging_file = os.path.join(os.getenv('HOMEDRIVE'),os.getenv('HOMEPATH'), 'test.log')
else:
logging_file = os.path.join(os.getenv('HOME'), 'test.log')
logging.basicConfig( level=logging.DEBUG, format='%(asctime)s : %(levelname)s : %(message)s', filename = logging_file, filemode = 'w',)
logging.debug("Start of the program")logging.info("Doing something")logging.warning("Dying now")
輸出:
$python use_logging.py
Logging to C:\Users\swaroop\test.log
test.log文件內(nèi)的內(nèi)容:
2018-09-03 13:18:16,233 : DEBUG : Start of the program
2018-09-03 13:18:16,233 : INFO : Doing something
2018-09-03 13:18:16,233 : WARNING : Dying now
解釋:
一方面,通過字符串判斷,platform模塊獲取的平臺信息,是否為 Windows系統(tǒng)。
另一方面,通過使用os模塊,獲取時間信息,在日志模塊中記錄時,加入時間信息。
關(guān)于“python的sys系統(tǒng)模塊和logging日志模塊怎么用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。