Standard Library(标准库)
Python里包含了大量有用的模块,熟悉标准库能快速解决很多问题。
我们以几个常用的库中的模块来举例说明。
sys
module(系统模块)
sys module包括了一些系统特定的函数。包括之前学过的sys.argv
假设我们检查所用Python版本:
>>> import sys
>>> sys.version_info
sys.version_info(major=3, minor=6, micro=4, releaselevel='final', serial=0)
>>> sys.version_info.major==3
True
通过sys.version_info马上能知道我们所用的Python版本号,通过.major知道用的是Python3,且可以用来做逻辑计算。
logging
module(登录模块)
如果想检查我们的程序是否按预期设想在运行,把一些调试信息或重要信息存在某地,那么我们就可以用logging
module
import os
import platform
import logging
# platform.platform() --->'Windows-10-10.0.16299-SP0'
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')
print("Logging to", logging_file)
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")
Output:
Logging to C:\Users\blgzs_csz\test.log
2014-03-29 09:27:36,660 : DEBUG : Start of the program
2014-03-29 09:27:36,660 : INFO : Doing something
2014-03-29 09:27:36,660 : WARNING : Dying now
#上述后三行在我的PyCharm中没有显示出来。 如果检查test.log 的内容,才会有这样后三行的内容
Module of the Week Series
在标准库中还有很多例如调试、处理命令行、正则表达式等等。
要进一步深入了解,最好的方法是去读Doug Hellmann所著的 《Python Module of the Week》 系列以及《Python documentation》
这一章虽然简短,但是对于应用Python来说很关键。需要不断的深入学习,用help()看过几个,但是还不是很透彻,有空要结合下阶段的实践和作者推荐的这两本书才行。