Python 远程机器人 API。为什么我的机器人会对每条消息做出反应?
Python Telebot API. Why my bot react on every message?
我希望我的机器人对用户发送的特定消息做出反应。
但是机器人会对每条消息做出反应。
@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()
在此代码中,当用户输入单词 'photo' 时,机器人会向他发送一个选择。但我输入了一个随机词,它仍然给我发送了一个选择。我的代码有什么问题?
这里的这一行有问题:if message.text =='photo' or 'new car':
。你基本上每次都在问这个:
>>> False or True
True
>>> message = 'random'
>>> message =='photo' or 'new car'
'new car'
你应该问 if message.text == 'photo' or message.text == 'new_car'
或者你可以像这样稍微缩短它 if message.text in ('photo', 'new_car'):
示例:
>>> message = 'random'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
>>> message = 'photo'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
yes!
我希望我的机器人对用户发送的特定消息做出反应。 但是机器人会对每条消息做出反应。
@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()
在此代码中,当用户输入单词 'photo' 时,机器人会向他发送一个选择。但我输入了一个随机词,它仍然给我发送了一个选择。我的代码有什么问题?
这里的这一行有问题:if message.text =='photo' or 'new car':
。你基本上每次都在问这个:
>>> False or True
True
>>> message = 'random'
>>> message =='photo' or 'new car'
'new car'
你应该问 if message.text == 'photo' or message.text == 'new_car'
或者你可以像这样稍微缩短它 if message.text in ('photo', 'new_car'):
示例:
>>> message = 'random'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
>>> message = 'photo'
>>> if message in ('photo', 'new_car'):
... print('yes!')
...
yes!