def c_id(date):
connection = sqlite3.connect(db)
q = connection.cursor()
result = q.execute("SELECT `id` FROM `date` WHERE `date` = ?", (date,))
rows = q.fetchall()
l = []
for row in rows:
l.append(row[0])
return l
connection.close()
print(*id)
, то выводится 1 4
, но когда пишу bot.send_message(message.chat.id, id)
, то сообщение в телеграмме 1