摘要: Python的标准安装包括一组模块,称为标准库。一、导入模块第一种方法:1、有模块放在D:/python/py下:#D:/python/py/hello.pyprint "Hello !"在主程序想用该模块:>>> import helloTraceback (most recent call last): File "", line 1, in import helloImportError: No module named hello>>> import sys>>> sys.path.appen 阅读全文