how to subtract dates in Python
from datetime import datetime
def days_between(d1, d2):
d1 = datetime.strptime(d1, "%Y-%m-%d")
d2 = datetime.strptime(d2, "%Y-%m-%d")
return abs((d2 - d1).days)
how to subtract dates in Python
from datetime import datetime
def days_between(d1, d2):
d1 = datetime.strptime(d1, "%Y-%m-%d")
d2 = datetime.strptime(d2, "%Y-%m-%d")
return abs((d2 - d1).days)
subtract datetime python
# deltatime is one of good way to manipulate data and time with fine details
from datetime import datetime, timedelta
# Take a timestamps
datetime_now = datetime.now()
print("Current Date and time :- ", datetime_now)
>>> Current Date and time :- 2021-08-03 13:35:56.827517
# Create a delta time
datetime_delta = timedelta(weeks = 1, days = 2, hours = 4, minutes = 10,
seconds = 8, milliseconds = 25, microseconds = 8)
print("Delta datetime :- ", datetime_delta)
>>> Delta datetime :- 9 days, 4:10:08.025008
# subtract datetime_delta
datetime_new = datetime_now - datetime_delta
print("Current Date and time minus Delta datetime :- ", datetime_new)
>>> Current Date and time minus Delta datetime :- 2021-07-25 09:25:48.802509
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us