手机
当前位置:查字典教程网 >脚本专栏 >python >python直接访问私有属性的简单方法
python直接访问私有属性的简单方法
摘要:实例化对象名._类名__私有属性名classFlylove:price=123def__init__(self):self.__direct...

实例化对象名._类名__私有属性名

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直接访问私有属性的简单方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持查字典教程网。

【python直接访问私有属性的简单方法】相关文章:

Python中使用中文的方法

wxpython 最小化到托盘与欢迎图片的实现方法

python回调函数的使用方法

Python获取脚本所在目录的正确方法

python条件和循环的使用方法

python 获取本机ip地址的两个方法

pydev使用wxpython找不到路径的解决方法

Python的函数嵌套的使用方法

python解析json实例方法

python列表去重的二种方法

精品推荐
分类导航