'''
Online Python Interpreter.
Code, Compile, Run and Debug python program online.
Write your code in this editor and press "Run" button to execute it.
'''
current_movies = { 'The Grinch':'11:00am',
'Rudolph':'1:00pm',
'Frosty the snowman':'3:00pm',
'Christmas Vacation':'5:00pm'}
print("We are showing the following movies:")
for key in current_movies:
print(key)
movie = input('What movie would you like the showtime for?\n')
showtime = current_movies.get(movie)
if showtime == None:
print("Requested showtime isn't playing")
else:
print(movie, 'is playing at', showtime)