Fix the 3 errors, will give brainliest. Wrong answers will be reported
fix the 3 errors, will give brainliest.
#Q1 - Fix the errors in the following code. (3 Errors)

#Q2 - Extend the Movies list to 5 movies.

#Q3 - Display a list of 5 games when user chooses option 1.

#Q4 - Then, use nested if statements. Ask them which game they would like to play.
#Every option should have an output: Playing Fifa 23, Please wait

#Extension Task:-- Make a world cup 2022 Quiz as option 4. Add 10 questions and record the score.

print("Choose an option of entertainment:")
print("--")
print(" option 1 - Games")
print(" option 2 - Movies")
print(" option 3 - Book")
print("--")
useroption = int(input("Enter your option: "))


#Selection
if (useroption == 2)
print("You chose to watch movies")
print("--")

# List of Movies
print("List of movies available")
print("1. The Lion King")
print("2. The return of the King")
print("--")

movieoption = int(input("Which movie would you like to watch? (1-2)")

#Selection

if(movieoption == 1):
#This is nested loop
print("Playing The Lion King....")
print("Please wait...")

else:
print("Pick between option 1 - option 3")