EDWARD A. answered 02/02/23
PhD Data Scientist: R, Tableau, Dashboards, Graphpad, Bioinformatics
seasons = {
"Spring": {"April": "Rain", "May": "Flowers", "June": "Summer Approaches"},
"Summer": {"July": "Hot", "August": "Very Hot", "September": "Fall Approaches"},
"Fall": {"October": "Leaves", "November": "Cool", "December": "Winter Approaches"},
"Winter": {"January": "Snow", "February": "Cold", "March": "Spring Approaches"}
}
winter = {"Winter": {"January": "Snow", "February": "Cold", "March": "Spring Approaches"}}
seasons.update(winter)
print(seasons)