嗨,我在使用Python 3的Jupyter Notebook内部有以下代码:
Python code inside Jupyter Notebooks
当我在Python shell中键入相同的代码时,会发生相同的事情:
class SARDog(Dog):
"""Represent a search dog."""
def__init__(self, name):
"""Initialize the sardog."""
super().__init__(name)
def search(self):
"""Simulate searching."""
print(self.name + " is searching.")
my_dog = SARDog('Willie')
print(my_dog.name + " is a search dog.")
my_dog.sit()
my_dog.search()
SyntaxError: invalid syntax
-
显示语法错误的红线位于(自身,名称)后的冒号旁边:
我尝试在Jupyter中重新启动内核,但是显然代码在另一个环境中具有相同的效果。
代码来自初学者的Python速查表。
非常感谢您的任何投入!
答案 0 :(得分:0)
在__init__
之后,您需要添加
self.name = "your choice, can be a 'str' though"
这样就定义了self.name