类/自我问题
这是我的代码:
class Pop(object):
def holder(self):
self.boobs = 16
self.sent = "pop"
def together(self):
print "%s : %i" % (self.sent, self.boobs)
pop = Pop()
pop.together()
这不应该打印“pop : 16”吗?抱歉,变量名称很奇怪:P
另外,我对 self 很陌生。谢谢。
Here's my code:
class Pop(object):
def holder(self):
self.boobs = 16
self.sent = "pop"
def together(self):
print "%s : %i" % (self.sent, self.boobs)
pop = Pop()
pop.together()
Shouldn't this print "pop : 16"? Sorry for the odd variable names :P
Also, I'm new to self. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的示例中,您应该首先调用
holder
,因为这会将变量设置为 16。我认为你的意思是这样做:
In your example, you should first call
holder
, because that sets the variable to 16.I think you meant to do this: