简介 Python标准库使随着Python附带安装的,它包含很多有用的模块.所以对一个Python开发者来说,熟悉Python标准库是十分重要的.通过这些库中的模块,可以解决你的大部分问题. sys模块 sys模块包含系统对应的功能. import sys def readfile(filename): '''Print a file to the standard output.''' f = open(filename) while True: line = f.readline() if…