I want to send more than 1 photo to people from bot. So if I will write three time "bot.send_photo" it won`t be 1 message, so I want to send >1 photo in 1 message. How can I do it?
Asked
Active
Viewed 68 times
0
-
Please provide enough code so others can better understand or reproduce the problem. – Community Apr 20 '22 at 07:52
1 Answers
0
I don't understand what you mean, but this might answer your question
img = ["img1.png","img2.png","img3.png"]
for i in img:
print(i)
#bot.send_photo(chat_id, 'your URl or image path')

muntazir halim
- 43
- 7
-
U are sending 3 photos in 3 different messages. I need to send 3 photos in one same message – Vladragone Apr 20 '22 at 20:11