This commit is contained in:
Pavel_Duron 2022-11-03 18:33:12 +10:00
parent 36940601d3
commit 999b8843e8

2
bot.py
View File

@ -21,7 +21,7 @@ async def send_time(message: types.Message):
ct = ct+datetime.timedelta(hours=14) # +14 часов от сервера
ct2 = ct.strftime('%H:%M') # форматирует датувремя просто во время
new_year = datetime.date(2022, 12, 31).strftime("%d/%m/%Y")
differ = (new_year - ct2).days
differ = ((new_year - ct2).days)
await message.reply(f'Сегодня {cd} \nВремя: {ct2} /nДо Нового Года осталось {differ} дней(-я)')