Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的用户机器人中创建一个命令,如果用户使用它,他的用户名将是(普通用户名)+在线。我试图使用 get_me() 来获取用户名,但我得到了所有信息。我只需要用户名...我该怎么做?
get_me()应该返回这样的字典:
get_me()
{'first_name': 'Your Bot', 'username': 'YourBot', 'id': 123456789}
您可以使用相应的键访问字典的值。如果你想要用户名,它看起来像这样:
get_me()['username']