Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- favorite_movies = ["Inception", "The Matrix", "Interstellar", "The Dark Knight"]
- favorite_movies.append("Godfather")
- print(f"\n Adding a new movie to my favourite movie list {favorite_movies}")
- favorite_movies.remove("The Matrix")
- print(f"\n Removing a movie from my favourite movie list {favorite_movies}")
- print(f"\n Prints out the total number of movies in the list {len(favorite_movies)}")
- print(f"\n Prints out the movies in alphabetical order{sorted(favorite_movies)}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement