Answer the question
In order to leave comments, you need to log in
How to calculate time difference in Python?
Hello!
There are 2 lines with time:
17:26 - текущее время
21:00 - время когда заведение закроется
Answer the question
In order to leave comments, you need to log in
# 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, где показана разница
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question