A simple check that will tell the difference between today and the date given.
- This can be useful to see how many days are between two dates, so helpful for programming purposes.
- The app will give you a print out of the days, as a text string, and as a normal int.
- Python
Name | About |
---|---|
Counting Days | Shows the number of days between today and (date) given |
To access the counter
, this application imports the following modules.
import os
from datetime import date
- Download and Run the counting_days.py
- Enter the date you want a difference of
- The difference will be returned
Output will be shown as follows:
There are 5 days between now and (date)!
5