S
S
sportik1742021-12-11 17:30:20
Python
sportik174, 2021-12-11 17:30:20

How to calculate time difference in Python?

Hello!
There are 2 lines with time:

17:26 - текущее время
21:00 - время когда заведение закроется

How to calculate the time left until 21:00?
Already confused with these datetime, timedelta, please help me figure it out

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Melnikov, 2021-12-11
@sportik174

# datetime из модуля datetime ( да да , выглядит как datetime.datetime ) , позволяет работать с датой + время
a = dt.datetime(2021,12,11,18,00) # время первое, можете сделать и по другому datetime.now() , чтоб получить тек. дату
b = dt.datetime(2021,12,11,19,0)
b -  a # получаем разницу
datetime.timedelta(seconds=3600) # на выходе объект класса timedelta, где показана разница

Well, something like this ...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question