PB
item1 = types.KeyboardButton("Кнопка1"')
item2 = types.InlineKeyboardButton("Кнопка2")
markup.add(item1, item2)
return markup
Size: a a a
PB
B
import telebot
bot = telebot.TeleBot("ВАШТОКЕН")
@bot.message_handler(commands=['music'])
def send_music(message):
bot.send_audio(chat=message.chat.id, audio="FILEID")
@bot.message_handler(content_types=['audio'])
def input_audio(message):
print(message.audio.file_id)
Y
B
ДЄ
Y
PB
B
row_width
SB
PB
Y
B
ДЄ
VA
SB
B
python3
print("Hello", "world!")
Hello world!
B
ДЄ