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 number of reviews for XYZ, 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!”}       ]    }]

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!”}       ]    }]

Given the variable alphabet with all 26 letters of English a…

Given the variable alphabet with all 26 letters of English alphabet from a to z, what will be the result of executing the following code? k = alphabet.index(‘klm’)soup = alphabet[k:k + alphabet.index(‘fgh’)]n = soup.index(‘n’)print(alphabet[n:n+3] + soup[:2])

With my_address set to ‘1357 County Ln., MN 55343’, which of…

With my_address set to ‘1357 County Ln., MN 55343’, which of the following are the correctly fill the blanks that will result in the substring ‘County’?Note: The fill-in parts are separated by semi-colons ; which are not part of the code. i = my_address.index(___) j = my_address.index(___) sub_str = my_address[___:___]

Which of the following will correctly fill in the blanks and…

Which of the following will correctly fill in the blanks and produce the shown result? movie_len = 150 # in minutes hours = movie_len ___ 60 minutes = movie_len ___ 60 print(‘The movie is ‘ + ___ + ‘:’ + ____ + ‘ long!’) Result: The movie is 2:30 long!

Assume you are given a dictionary course_dict with ACT101, F…

Assume you are given a dictionary course_dict with ACT101, FIN202, MKT300, MIS310 and MIS340 courses and the corresponding number of credits 4, 3, 3, 3 and 2. Given a blank list lst, what would be the result from running this code? for key in course_dict:  if course_dict[key] == 3:    lst.append(course_dict[key])print(lst)