特殊名单

阅读量: 鲁文奎 2021-04-22 12:04:23
Categories: Tags:

特殊名单

在Python中,以py为扩展名保存的文件就可以认为是一个模块,模块包含了 Python 对象定义和Python语句。
假设recommendations.py 放在C:\Python34\PCI_Code\chapter2\目录下,其中包含函数critics
如果在import函数的时候出现如下错误:

from recommendation import critics
Traceback (most recent call last):
File "<pyshell#7>", line 1, in
from recommendation import critics
ImportError: No module named 'recommendation'
请把目录C:\Python34\PCI_Code\chapter2\加到系统路径中,
import sys
sys.path.append("C:\Python34\PCI_Code\chapter2")
from recommendations import critics

python把module内定义的方法叫做function;把class内定义的方法叫做method。