我在两个不同的模块中有两个类:
animal.py
monkey.py
动物.py:
import json
class Animal(object):
pass
猴:
import animal
class Monkey(animal.Animal):
def __init__(self):
super(Monkey, self).__init__()
# Do some json stuff...
当我尝试实例化 aMonkey
时,我得到一个
NameError: global name 'json' is not defined
但是我是json
在超类的定义模块中导入的,为什么不加载呢?