“Python porównaj daty” Kod odpowiedzi

Porównaj daty Pythona

import datetime

today = datetime.date.today()

tomorow = today + datetime.timedelta(days=1)

1dayTimedelta = today - tomorow

result = 1dayTimedelta.total_seconds()
#the difference in seconds
Enchanting Eland

Python porównaj daty

    jan_1_2020 = datetime.datetime(2020, 1, 1)
    dec_12_2020 = datetime.datetime(2020, 12, 12)

    if (jan_1_2020 < dec_12_2020):
        print("first datetime is less than the second")
CompSciGeek

Odpowiedzi podobne do “Python porównaj daty”

Pytania podobne do “Python porównaj daty”

Więcej pokrewnych odpowiedzi na “Python porównaj daty” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu