我读到自己不是python中的关键字,但为什么以下代码输出:(10,10)???
我的一个功能使用selff
,另一个使用self
。
我使用的是python 2.7。
class Point:
def __init__(selff, x=0, y=0):
selff.x = x
selff.y = y
def __str__(self):
return "({0}, {1})".format(self.x, self.y)
p1 = Point(10,10)
print p1