gpt4 book ai didi

python - 类型错误:列表索引必须是整数,而不是 unicode(Telepot 检索名称)

转载 作者:太空宇宙 更新时间:2023-11-04 05:28:55 24 4
gpt4 key购买 nike

我试图制作一个机器人来检索群组中聊天发件人的姓名。我将 Python 与 Telepot 结合使用。

>>> from pprint import pprint
>>> import telepot
>>> response = bot.getUpdates()
pprint(response)
[{u'message': {u'chat': {u'first_name': u'Nick',
u'id': 999999999,
u'last_name': u'Lee',
u'type': u'private'},
u'date': 1444723969,
u'from': {u'first_name': u'Nick',
u'id': 999999999,
u'last_name': u'Lee'},
u'message_id': 4015,
u'text': u'Hello'},
u'update_id': 100000000}]

当我执行这个时,它给我这个错误

sender1 = response[u'message'][u'from'][u'first_name']
sender2 = response[u'message'][u'from'][u'last_name']

错误:

TypeError: list indices must be integers, not unicode

我该如何解决这个问题?

最佳答案

表示中的方括号表示您有一个列表,列表必须使用整数或切片进行索引。在尝试访问任何包含的词典之前,尝试通过 [0] 建立索引。

关于python - 类型错误:列表索引必须是整数,而不是 unicode(Telepot 检索名称),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37771482/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com