Question
def sunset(date,daycycle): Returns the sunset datetime (day and time) for the given date This function looks up the sunset from the given daycycle dictionary.
def sunset(date,daycycle): """ Returns the sunset datetime (day and time) for the given date This function looks up the sunset from the given daycycle dictionary. If the daycycle dictionary is missing the necessary information, this function returns the value None. A daycycle dictionary has keys for several years (as int). The value for each year is also a dictionary, taking strings of the form 'mm-dd'. The value for that key is a THIRD dictionary, with two keys "sunrise" and "sunset". The value for each of those two keys is a string in 24-hour time format. For example, here is what part of a daycycle dictionary might look like: "2015": { "01-01": { "sunrise": "07:35", "sunset": "16:44" }, "01-02": { "sunrise": "07:36", "sunset": "16:45" }, ... } Parameter date: The date to check Precondition: date is a date object Parameter daycycle: The daycycle dictionary Precondition: daycycle is a valid daycycle dictionary, as described above """ # HINT: ISO FORMAT IS 'yyyy-mm-ddThh:mm'. For the sunrise value, construct a # string in ISO format and call str_to_time. pass # Implement this function
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started