“czas Delta Python” Kod odpowiedzi

Jak dodać czas z czasem delta w Python

from datetime import timedelta, datetime
now = datetime.now()
print("Today is:-",now)
print("600 hours later than today will be", str(now + timedelta(hours=600)))
Programmer of empires

czas Delta Python

from datetime import timedelta, datetime

print(datetime.now(), str(datetime.now() + timedelta(weeks = 1, days = 2, hours = 3, minutes = 4,
                           seconds = 5, milliseconds = 6, microseconds = 7)))
Adhun Thalekkara

Python Strftime ISO 8601

>>> # convert string in iso 8601 date dime format to python datetime type
>>> import datetime
>>> datetime.datetime.strptime('2020-06-19T15:52:50Z', "%Y-%m-%dT%H:%M:%SZ")
datetime.datetime(2020, 6, 19, 15, 52, 50)
Cheerful Constrictor

Odpowiedzi podobne do “czas Delta Python”

Pytania podobne do “czas Delta Python”

Więcej pokrewnych odpowiedzi na “czas Delta Python” w Python

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

Przeglądaj inne języki kodu