Пишу ТОП игроков в мини-игре-боте на пайтоне.
@bot.message_handler(commands=['top'])
def top(message):
connect = sqlite3.connect("db.db")
cursor = connect.cursor()
top_query = cursor.execute(f"SELECT `f_name`, `u_name`, `score` FROM `users` ORDER BY `score` DESC LIMIT 10;")
arr = []
for i in range(10):
try:
top = cursor.fetchone()
arr.append([top[0], top[1], top[2]])
except:
break
msg = ''
for i, item in enumerate(arr):
msg+=f"{i+1}. [{item[0]}](https://t.me/{item[1][1::]}): *{item[2]}*\n"
bot.send_message(message.chat.id, msg, reply_markup=none)
Результат такой:
Вопрос: Как убрать предпросмотр ссылок внизу?