А🛠
Size: a a a
А🛠
Y🌯
i = 0
while i != 300:
with open(str(i)+".webp", "r") as f:
bot.send_document(chatId, f)
time.sleep(5)
i+=1
А🛠
KA
KA
Y🌯
Y🌯
Y🌯
GF
GF
KA
import os
for file in os.listdir('путь'):
if file.split('.')[-1] == 'webp':
f = open('путь/'+file, 'rb')
msg = bot.send_photo(message.chat.id, f, None)
GF
py3
def f(x, y):
print(x+y)
f(x='f', 'f')
File "source_file.py", line 4
f(x='f', 'f')
^
SyntaxError: positional argument follows keyword argument
GF
KA
GF
GF
KA
GF