脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python直接访问私有属性的简单方法

python直接访问私有属性的简单方法

2020-09-03 10:08Python教程网 Python

下面小编就为大家带来一篇python直接访问私有属性的简单方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
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直接访问私有属性的简单方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐