Question: Using python, you will create an event tracker program. You are given information about locations and events: locations = { Birthday : Somewhere St ,

Using python, you will create an event tracker program. You are given information about locations and events:
locations ={Birthday: Somewhere St,BlockParty: Somewhere Ave,Conference: CHI,Competition: Online}
events ={Birthday: My birthday party!,BlockParty: The ultimate neighborhood party!,Conference: The networking event for IT professionals,Competition: A TBD competitive event.}
Create a third dictionary (like the ones above) that stores times that the events are held. The key is the event (e.g.Birthday), the value is the time (e.g.8:00 AM)(5 points).
Get the user input for an event (e.g.Birthday)(5 points).
If the event exists, display the associated location, event, and time. Otherwise, output an error message. (10 points).
Please include useful comments in your code as a way to document your process (5 points).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!