@bot.message_handler(commands=['start'])
def start_m(message):
kkb = types.ReplyKeyboardMarkup()
bbt = types.KeyboardButton('Отправить контакт',request_contact=True)
kkb.add(bbt)
bot.send_message(message.chat.id,'Нажми на кнопку, чтобы отправить контакт', reply_markup = kkb)