本站精选了一篇python相关的编程文章,网友慎合瑞根据主题投稿了本篇教程内容,涉及到python、访问私有属性相关内容,已被732网友关注,相关难点技巧可以阅读下方的电子资料。
实例化对象名._类名__私有属性名
class Flylove: price = 123 def __init__(self): self.__direction = 'go beijing .' zIng = 'wait car,many person' if __name__ == '__main__': print Flylove.price fly = Flylove() print fly._Flylove__direction
以上这篇python直接访问私有属性的简单方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。