-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPythonMovieLibrary.py
55 lines (38 loc) · 1.21 KB
/
PythonMovieLibrary.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
MENU_PROMPT = "\nEnter 'a' to add a movie, 'l' to see your movies, 'f' to find a movie by title, or 'q' to quit: "
movies = []
def add_movie():
title = input("Enter the movie title: ")
director = input("Enter the movie director: ")
year = input("Enter the movie release year: ")
movies.append({
'title': title,
'director': director,
'year': year
})
def show_list():
for movie in movies:
movie_print(movie)
def movie_print(movie):
print(f"The title of the movie is {movie['title']}")
print(f"The director of the movie is {movie['director']}")
print(f"The year of release of this movie is {movie['year']}")
def find_movies():
search_movie = input('Enter your movie title over here')
for movie in movies:
if movie['title'] == search_movie:
movie_print(movie)
user_menu = {
"a": add_movie,
"l": show_list,
"f": find_movies
}
def menu():
selection = input(MENU_PROMPT)
while selection != 'q':
if selection in user_menu:
variabila1 = user_menu[selection]
variabila1()
else:
print('Unknown command. Please try again.')
selection = input(MENU_PROMPT)
menu()