gpt4 book ai didi

Python 远程机器人 API。为什么我的机器人会对每条消息使用react?

转载 作者:行者123 更新时间:2023-11-30 22:19:52 25 4
gpt4 key购买 nike

我希望我的机器人对用户发送的特定消息使用react。但机器人会对每条消息使用react。

@bot.message_handler(content_types=['text'])
def send_rand_photo(message):
keyboard = types.InlineKeyboardMarkup()
if message.text =='photo' or 'new car':
msg=bot.send_message(message.chat.id, "Ну как тебе?", reply_markup=keyboard)

like_button= types.InlineKeyboardButton(text=emojize("Like :heart:", use_aliases=True), callback_data='like')
keyboard.add(like_button)

dislike_button =types.InlineKeyboardButton (text=emojize("Dislike :broken_heart:", use_aliases=True), callback_data='dislike')
keyboard.add(dislike_button)

all_photo_in_directory=os.listdir(PATH)
random_photo=random.choice (all_photo_in_directory)
img=open (PATH + '/' +random_photo, 'rb')
bot.send_chat_action(message.from_user.id,'upload_photo')
bot.send_photo(message.from_user.id,img, reply_markup=keyboard)
img.close()

在此代码中,当用户输入单词“照片”时,机器人会向他发送一个选择。但我随机输入一个单词,它仍然会向我发送一个选择。我的代码有什么问题吗?

最佳答案

问题出在这里:if message.text =='photo' or 'new car':。你基本上每次都会问这个:

>>> False or True
True

>>> message = 'random'
>>> message =='photo' or 'new car'
'new car'

您应该询问if message.text == 'photo'或message.text == 'new_car'或者您可以像这样稍微缩短它if message.text in ( '照片','new_car'):

示例:

>>> message = 'random'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
>>> message = 'photo'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
yes!

关于Python 远程机器人 API。为什么我的机器人会对每条消息使用react?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48974595/

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