为了账号安全,请及时绑定邮箱和手机立即绑定

我们如何使用python获取dist的数据列表

我们如何使用python获取dist的数据列表

慕勒3428872 2023-07-11 14:30:34
我想从下面的代码中获取数据:data=[{'f': [{'@id': '6', '#text': 'Application Review'}, {'@id': '7', '#text': 'final demo'}, {'@id': '8', 'url': '', '#text': 'Sample Document.docx'}, {'@id': '3', '#text': '3'}], 'update_id': '1598972807556'}, {'f': [{'@id': '6', '#text': 'Track Record data'}, {'@id': '7', '#text': 'Track Record data'}, {'@id': '8', 'url': '', '#text': 'Testing Guidelines-QuickBase.docx'}, {'@id': '3', '#text': '1'}], 'update_id': '1597820400040'}]我需要值或文本输出: Application reveiw   final demo so on谢谢
查看完整描述

1 回答

?
青春有我

TA贡献1784条经验 获得超8个赞

这只是循环遍历所有各种字典和列表的问题:


>>> data=[{'f': [{'@id': '6', '#text': 'Application Review'}, {'@id': '7', '#text': 'final demo'}, {'@id': '8', 'url': '', '#text': 'Sample Document.docx'}, {'@id': '3', '#text': '3'}], 'update_id': '1598972807556'}, {'f': [{'@id': '6', '#text': 'Track Record data'}, {'@id': '7', '#text': 'Track Record data'}, {'@id': '8', 'url': '', '#text': 'Testing Guidelines-QuickBase.docx'}, {'@id': '3', '#text': '1'}], 'update_id': '1597820400040'}]

>>> print('\n'.join([e['#text'] for d in data for e in d['f']]))

Application Review

final demo

Sample Document.docx

3

Track Record data

Track Record data

Testing Guidelines-QuickBase.docx

1


查看完整回答
反对 回复 2023-07-11
  • 1 回答
  • 0 关注
  • 136 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信