Given the customer reviews shown below, which one of the fol…
Given the customer reviews shown below, which one of the following would correctly display the first review rating for ABC, Inc.? cust_reviews = [ {‘name’ : “XYZ, Inc.”, ‘reviews’ : [ {‘rating’: 5, ‘comment’ : “Excellent work!”}, {‘rating’: 4, ‘comment’: “Well done!”}, {‘rating’: 3, ‘comment’: “Would recommend!”} ] } , {‘name’: “ABC, Inc.”, ‘reviews’: [ {‘rating’: 1, ‘comment’: “Just awful!”}, {‘rating’: 3, ‘comment’: “Could be better!”} ] }]
Read Details