Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Heikki Topi, Jeffrey A Hoffer, Ramesh Venkataraman

13th Edition

0134773659, 978-0134773650

More Books

Students also viewed these Databases questions

Question

How can we use language to enhance skill in perceiving?

Answered: 1 week ago