This commit is contained in:
Pavel_Duron 2022-11-03 19:05:25 +10:00
parent 6f1fb178ed
commit a07cce2fd8

6
bot.py
View File

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