如何在Python中的类函数定义中调用self.value?
如何在函数定义中调用 self.value ?
class toto :
def __init__(self):
self.titi = "titi"
def printiti(self,titi=self.titi):
print(titi)
How could I call a self.value
in a definition of a function?
class toto :
def __init__(self):
self.titi = "titi"
def printiti(self,titi=self.titi):
print(titi)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是这样完成的:
这是一个常见的 python 习惯用法(将参数的默认值设置为 None 并在方法的主体中检查它)。
This is how it is done:
This is a common python idiom (setting default value of argument to None and checking it in method's body).
类名一般都是大写。
Class names are generally Upper Case.