If I have two dates (ex. '8/18/2008' and '9/26/2008') what is the best way to get the difference measured in days?
|
1
|
|
|
|
|
|
If you have two date objects, you can just subtract them.
The relevant section of the docs: http://docs.python.org/lib/module-datetime.html |
||
|
|
|
|
You want the datetime module.
Or other example:
As pointed out here |
||
|
|
|
|
Days until Christmas:
More arithmetic here. |
||
|
|
|
|
Using the power of datetime:
|
||||
|
