Python-Quizzes | Python Tuples Quiz | Question 9

Last Updated :
Discuss
Comments

What is the output of the following program?

Python
li = [3, 1, 2, 4] 
tup = ('A', 'b', 'c', 'd') 
li.sort() 
counter = 0
for x in tp: 
	li[counter] += int(x) 
	counter += 1
	break
print(li) 

[66, 97, 99, 101]

[66, 68, 70, 72]

[66, 67, 68, 69]

ValueError

Share your thoughts in the comments