⟁ᴡ

Size: a a a
⟁ᴡ
⟁ᴡ
⟁ᴡ
⟁ᴡ
⟁ᴡ
await client.send_file(
event.chat_id,
["text.png", "out.png"],
force_document=True
)
return
None
⟁ᴡ
⟁ᴡ
⟁ᴡ
⟁ᴡ
list = [
"text.png",
"out.png",
]
for i in range(1):
await client.send_file(event.chat_id, [list][i % 1])
⟁ᴡ
⟁ᴡ
import glob
list = [glob.glob(e) for e in ['photo_2021*.png']]
for i in range(1):
await client.send_file(event.chat_id, list [i % 1])
⟁ᴡ
from glob import glob
[await client.send_file(event.chat_id, [glob(e) for e in ['photo_2021*.png']] [i % 1]) for i in range(1)]
MM
MM
MM
👑️
⟁ᴡ
⟁ᴡ
a
V