from telegram.ext import Updater, CommandHandler
def start(update, context):
update.message.reply_text('Привет! Я твой новый Телеграм-бот!')
def help_command(update, context):
update.message.reply_text('Отправь /start для начала работы!')
updater = Updater("ТВОЙ_ТОКЕН", use_context=True)
dp = updater.dispatcher
dp.add_handler(CommandHandler("start", start))
dp.add_handler(CommandHandler("help", help_command))
updater.start_polling()
updater.idle()