Answered step by step
Verified Expert Solution
Question
1 Approved Answer
List the variables names (in alphabetical order) and corresponding values at line 8 and 12 1 names = [Bob, Lisa, Tom] 2 scores = [120,
List the variables names (in alphabetical order) and corresponding values at line 8 and 12
1 names = ["Bob", "Lisa", "Tom"]
2 scores = [120, 234, 155]
3 length = len(names)
4 indexes = range(0, length)
5 best_i = 0
6 for i in indexes:
7 if scores[i] > scores[best_i]:
8 # ?Variables?
9 best_i = i
10
11 winner = names[best_i]
12 # ?Variables?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started