The logic is a little off as mention bye @buran.
This is a quick and dirty fix,also your del is function not working for me.
This is a quick and dirty fix,also your del is function not working for me.
if __name__ == "__main__": open(FILENAME, 'a').close() main()
Output:C:\code
λ python movie.py
COMMAND MENU
list - List all movies
add - Add a movie
del - Delete a movie
exit - Exit the program
Enter Command: add
Name: Seven
Year: 1995
Seven was added.
Enter Command: list
1. Seven (1995)
Enter Command: exit
Bye!
C:\code
λ python movie.py
COMMAND MENU
list - List all movies
add - Add a movie
del - Delete a movie
exit - Exit the program
Enter Command: list
1. Seven (1995)
Enter Command: add
Name: Foo
Year: 2000
Foo was added.
Enter Command: list
1. Seven (1995)
2. Foo (2000)
Enter Command: Exit
Bye!