Ask Question
19 January, 06:55

viewRatings (string, int) Takes a username and a minimum rating value. It prints all the books that the user has rated with a value greater than or equal to the minimum rating value. The function does not return anything.

+5
Answers (1)
  1. 19 January, 09:08
    0
    def ViewRatings (str, rating):

    for book in books:

    if r > = rating:

    print (book)

    ViewRatings ("emma", 3)

    Explanation:

    * The code is in Python.

    Since the are missing parts in your question. I am assuming there is a books list and there is a rating, r for each book.

    - Create a function called ViewRatings that takes two parameters

    - Initialize a for loop that iterates through each book in the books list

    - For each book, check its rating with given rating. If the rating of the book is greater than or equal to given rating, print the book

    - Call the function
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “viewRatings (string, int) Takes a username and a minimum rating value. It prints all the books that the user has rated with a value greater ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers