Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Get immediate answers to your questions from a wide network of experienced professionals on our Q&A platform. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.
Sagot :
Answer:
See Explanation
Explanation:
This question requires more information because you didn't state what the program is expected to do.
Reading through the program, I can assume that you want to first print all movie titles then prompt the user for a number and then print the move title in that location.
So, the correction is as follows:
Rewrite the first line of the program i.e. movie_titles = ["The grinch......."]
for each_movie_titles in movie_titles:
print(each_movie_titles)
usernum = int(input("Number between 0 and 9 [inclusive]: "))
if usernum<10 and usernum>=0:
print(movie_titles[usernum])
Line by line explanation
This iterates through the movie_titles list
for each_movie_titles in movie_titles:
This prints each movie title
print(each_movie_titles)
This prompts the user for a number between 0 and 9
usernum = int(input("Number between 0 and 9 [inclusive]: "))
This checks for valid range
if usernum<10 and usernum>=0:
If number is valid, this prints the movie title in that location
print(movie_titles[usernum])
We hope our answers were useful. Return anytime for more information and answers to any other questions you have. Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. Thank you for using Westonci.ca. Come back for more in-depth answers to all your queries.