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

python 中 __dict__函数的使用

时间:2019-12-17 20:22:30      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:init   键值对   def   属性   ini   obj   ict   获取   sel   

class F:
def __init__(self, name, age):
self.name = name
self.age = age

obj = F(‘tom‘, 20)
s = obj.__dict__
print(s) # {‘name‘: ‘tom‘, ‘age‘: 20}

__dict__获取类中的属性,并以键值对的形式存储

python 中 __dict__函数的使用

标签:init   键值对   def   属性   ini   obj   ict   获取   sel   

原文地址:https://www.cnblogs.com/jinbaobao/p/12056410.html

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