Python Programming Project
Create a Python program to work out when a car is due for its next service.
Vehicle is due for service every 10,000 miles or 1 year, whichever comes first.
Construct a working Python program based on the following pseudocode (may make changes as necessary):
miles = Enter Odometer Reading (miles)
dateOfLastService = Enter Date of Last Service (MM/DD/YY)
Use the closest 10,000mile interval larger than odometer reading.
Use the difference as “Service in _____ miles”
For “next service by date”, use Date of Last Service plus one year
eg. 04/17/17 becomes 04/17/18
Print “Perform next standard service in _____ miles or on (next service date)”
________________________________________________________________________