python札记-标准模块

python笔记---标准模块标准模块?python带有标准模块库。他们一般在python的lib下。但是有一些模块被内建在解

python笔记---标准模块

标准模块

?

python带有标准模块库。他们一般在python的lib下。但是有一些模块被内建在解释器中。有些模块式系统相关的。

>>> import sys>>> sys.ps1'>>> '>>> sys.ps2'... '>>> sys.ps1 = 'C> 'C> print('Yuck!')Yuck!C>?