我正在尝试访问这里的字典键
{'application_id': '467377486141980682',
'attachments': [],
'author': {'avatar': '25cb9058944599f9f1ba15279f9e4a8f',
'bot': True,
'discriminator': '0000',
'id': '964810500611375104',
'username': 'Sparky99'},
'channel_id': '790967460039491644',
'components': [],
'content': '73561',
'edited_timestamp': None,
'embeds': [],
'flags': 0,
'id': '976330290698006528',
'mention_everyone': False,
'mention_roles': [],
'mentions': [],
'pinned': False,
'timestamp': '2022-05-18T03:48:00.642000+00:00',
'tts': False,
'type': 0,
'webhook_id': '964810500611375104'}
我可以访问所有这些,除了用户名。
当我运行dic.get("username")
时,它返回none
,就像它不存在一样,但我可以使用dic.get()
访问所有其他元素注意:如果我需要在问题中添加更多信息,请告诉我。
username
不是该字典中的键。有一个键叫做author
,它的值是一个字典,在里面,你可以找到username
。