What is the output of the following program?
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
This question is part of this quiz :
Python Tuples Quiz