Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
11307 Visualizzazioni

In one of my interface,I have two dates.One is the start date and other one is the end date.In the next field I want the total no.of days/month between these two dates to be automatically generated.There is no other specification regarding the dates or the total no.of days between the two dates.How to get the total number of days between the two given dates?

Avatar
Abbandona
Risposta migliore

Hi Sneha,

Try this,

from datetime import datetime
date_format = "%m/%d/%Y"
a = datetime.strptime('8/18/2008', date_format)
b = datetime.strptime('9/26/2008', date_format)
delta = b - a
print delta.days # that's it

See following link

Hope it works for you

Avatar
Abbandona
Autore

Where to give this code?What if the date is not specified as 8/18/2008 and 9/26/2008

suppose your date format is '2014-12-31', for that your date_format will be '%Y-%m-%d'

Autore

This is to be added in the .py file right?

Autore

Which names are to be given instead of 8/18/2008 and 9/26/2008 in my code?

Post correlati Risposte Visualizzazioni Attività
1
apr 21
4408
1
mar 15
11374
3
ott 24
7461
0
apr 22
3328
5
feb 20
5158