Answer:
# Define a list of favorite movies
favorite_movies = ["Avengers: Endgame", "Spider-Man: Into the Spider-Verse", "Captain America: The Winter Soldier", "Iron Man", "Thor: Ragnarok", "Black Panther", "Guardians of the Galaxy", "Doctor Strange"]
# Remove the 5th element (index 4)
del favorite_movies[4]
# Insert favorite director name at index 3
favorite_movies.insert(3, "Taika Waititi")
# Add an additional movie to the list
favorite_movies.append("Shang-Chi and the Legend of the Ten Rings")
# Print the modified list
print(favorite_movies)
hope I helped