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
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