import random
pics_1 = [
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg',
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg',
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg'
]
pics_2 = [
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg',
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg',
'https://pbs.twimg.com/media/EhODS02WoAEsQZI.jpg'
]
@bot.message_handler(content_types=['text'])
def send_text(message):
pics = None
text = message.text.lower()
if text == 'hentai':
pics = pics_1
elif text == 'мама рядом':
pics = pics_2
// ...
if pics is not None:
pic = random.choice(pics)
bot.send_photo(message.chat.id, (pic))