Create a python script that allows a user to enter a date with the format YYYY-MM-DD. # Calculate and display the number of days between the date entered and June 30, 2018. code example
Example: python calc days between dates
from datetime import date
d0 = date(2008, 8, 18)
d1 = date(2008, 9, 26)
delta = d1 - d0
print(delta.days)