Question: Please help me modify the python code with the correct indentation and please also show me the output. Thank you! #a list_1 = [float(x) for

Please help me modify the python code with the correct indentation and please also show me the output. Thank you!

#a

list_1 = [float(x) for x in input().split()]

list_2 = [float(x) for x in input().split()]

compare = []

for i in range(0, len(list_1)):

if (list_1[i] > list_2[i]):

compare.append(1)

elif(list_1[i] < list_2[i]):

compare.append(-1)

else :

compare.append(0)

print(compare)

#b

list_1 = [float(x) for x in input().split()]

list_2 = [float(x) for x in input().split()]

w1 = 0

w2 = 0

for i in range(0, len(list_1)):

if (list_1[i] > list_2[i]):

w1 += 1

elif(list_1[i] < list_2[i]):

w2 += 1

if (w1 > w2):

print("List 1 wins!")

elif(w1 < w2):

print("List 2 wins!")

else :

print("They tie!")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!