def duplicate_sheet(message: types.Message):
wks_start = gc.open ('Test').get_worksheet (0)
bot.send_message (message.chat.id, 'Введите название листа: ')
new_sheet_name = input ('Input sheet name:')
# new_sheet_name = message.text
while new_sheet_name in list_sheets ():
bot.send_message (message.chat.id,'Таблица "{0}" уже существует. Введите другое название.'.format (new_sheet_name))
new_sheet_name = input ('Input sheet name:')
bot.send_message (message.chat.id,'Таблица "{0}" создана .'.format (new_sheet_name))
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message (message.chat.id, 'Введите название листа: ')
bot.send_message (message.chat.id, 'Введите название листа: ')