我使用了以下代码
class FooBar:
def __init__(self):
self.x = 0
self.y = 0
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
我将以上内容保存在FooBar.py
当我使用时,
import FooBar
p = FooBar()
错误说module object not callable
。是什么原因?