码迷,mamicode.com
首页 > 编程语言 > 详细

python对象转字典

时间:2018-10-26 19:27:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:xxx   print   dict   def   字典   class   col   sel   bsp   

详细如下:

 1 class TestDict:
 2     name = "wyb"
 3     age = "21"
 4 
 5     def __init__(self):
 6         self.gender = male
 7 
 8     def keys(self):                         # 获取字典的键
 9         s = (name, age, gender)
10         return s
11 
12     def __getitem__(self, item):            # 获取键对应的值
13         return getattr(self, item)          # getattr获取对象下某个属性的值
14 
15 
16 o = TestDict()
17 print(dict(o))          # 创建字典 -> 先调用对象下的keys方法再用o["xxx"]获取值([]本质上是调用对象下的__getitem__方法)

 

python对象转字典

标签:xxx   print   dict   def   字典   class   col   sel   bsp   

原文地址:https://www.cnblogs.com/wyb666/p/9857678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!