Write a Python program that reads a date in the format DD-MM and calculates how many days are remaining in that month from the date entered. 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)