The solution I captured displays duplicate value of PlayListRatings[0]
As per the solution of the question: Write a while loop to display the values of the Rating of an album playlist stored in the list PlayListRatings. If the score is less than 6, exit the loop. The list PlayListRatings is given by: PlayListRatings = [10, 9.5, 10, 8, 7.5, 5, 10, 10]
In While loop solution, row i = i+1 should be placed before row Rating = PlayListRatings[i]
1
vote
