📜  如何在 Telebot 中获取聊天名字 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:40.058000             🧑  作者: Mango

代码示例1
@bot.message_handler(func=lambda message: True)
def send_message(message:str):

user_first_name = str(message.chat.first_name)
bot.reply_to(message, 'Hi ' + user_frist_name)

# Result: Hi Saeed