由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
SanFrancisco版 - 请教一个Python问题, 怎么读出一个data structure中的全部members (内容)?
相关主题
Python大牛请进 (转载)借人气,结交湾区有志影视创作的朋友
诚心请教大data set到底该怎么分析? (转载)要去南三番,请问南三番的治安如何
成了 amazon prime memberH1B的老婆能否享受CA州内学费
湾区房屋加建改建交流没有永远的党派,只有永远的利益
请问这样情况需要找structure engineer吗大妈我立志做硅工,请支招
只有20%的人才能正确地读出以下的短句 -- 转贴Google咋这么疯狂呢?
GOOGLE DICTIONARY 怎么不能用了??去某刚上市公司面试被赶出来了。 (转载)
求湾区可以把laptop硬盘数据读出来的地方loan agent有什么用?
相关话题的讨论汇总
话题: structure话题: ds话题: data话题: 内容话题: python
进入SanFrancisco版参与讨论
1 (共1页)
d**s
发帖数: 920
1
祝大家春节好 !
给大家拜年 !
请教一个Python问题, 怎么读出一个data structure中的全部members(内容) ?
我在用一个的python library, 其中有一个data structure, 我知道它包括很多内容,
我的问题是:
- 怎么知道它包括什么内容 ?
- 怎么把它的内容读出来 ?
我首先想到的是把它转化成一个list,
such as:
a = list(DS) # DS is the data structure
这个会报错说:
TypeError: object is not iterable
请大家帮忙。
======================================================
具体来说: 我想读的是下面一个data structure的内容, 也许你有更具体的建议:
o****e
发帖数: 4946
2
if you want to see what members the class/structure has, use
dir(DS)
if you want to quickly look at the value of all members, use
DS.__dict__

祝大家春节好 !
给大家拜年 !
请教一个Python问题, 怎么读出一个data structure中的全部members(内容) ?
我在用一个的python library, 其中有一个data structure, 我知道它包括很多内容,
我的问题是:
- 怎么知道它包括什么内容 ?
- 怎么把它的内容读出来 ?
我首先想到的是把它转化成一个list,
such as:
a = list(DS) # DS is the data structure
这个会报错说:
TypeError: object is not iterable
请大家帮忙。
======================================================
具体来说: 我想读的是下面一个data structure的内容, 也许你有更具体的建议:


【在 d**s 的大作中提到】
: 祝大家春节好 !
: 给大家拜年 !
: 请教一个Python问题, 怎么读出一个data structure中的全部members(内容) ?
: 我在用一个的python library, 其中有一个data structure, 我知道它包括很多内容,
: 我的问题是:
: - 怎么知道它包括什么内容 ?
: - 怎么把它的内容读出来 ?
: 我首先想到的是把它转化成一个list,
: such as:
: a = list(DS) # DS is the data structure

d**s
发帖数: 920
3
Thanks a lot !
I tried to do
print DS.__dict__
It did not much help, in my case, it shows:
{'_parent': 0x01266DF0>, '_id': u'{012324d9-acc2-48ab-b7ca-c085a322aa38}'}
so it still did not show the REAL contents of data structure of DS.
Also, it looks like dir(DS) shows member functions, but it does not show
data members or data value, how can I find all data members and data values
of this structure ?
Thanks again.

容,

【在 o****e 的大作中提到】
: if you want to see what members the class/structure has, use
: dir(DS)
: if you want to quickly look at the value of all members, use
: DS.__dict__
:
: 祝大家春节好 !
: 给大家拜年 !
: 请教一个Python问题, 怎么读出一个data structure中的全部members(内容) ?
: 我在用一个的python library, 其中有一个data structure, 我知道它包括很多内容,
: 我的问题是:

1 (共1页)
进入SanFrancisco版参与讨论
相关主题
loan agent有什么用?请问这样情况需要找structure engineer吗
Google的bar真心高啊 (转载)只有20%的人才能正确地读出以下的短句 -- 转贴
Pure Storage面经, 遇到傻X阿三 (转载)GOOGLE DICTIONARY 怎么不能用了??
Racism in Software Engineering? zz求湾区可以把laptop硬盘数据读出来的地方
Python大牛请进 (转载)借人气,结交湾区有志影视创作的朋友
诚心请教大data set到底该怎么分析? (转载)要去南三番,请问南三番的治安如何
成了 amazon prime memberH1B的老婆能否享受CA州内学费
湾区房屋加建改建交流没有永远的党派,只有永远的利益
相关话题的讨论汇总
话题: structure话题: ds话题: data话题: 内容话题: python