Find the output of the following code.
T = [2e-04,True,False,8,1.001,True]
L1=[3,1,2,4]
L2=[‘A’,’b’,’c’,’d’]
L1.sort()
Count=0
V=0
for x in T:
V + = int(x)
print(V)
for x in L2:
L1[Count]+=ord(x)
Count+=1
print(L1)
Answers
Answered by
0
Answer:
I Don't Know the question Find the output of the following code.
T = [2e-04,True,False,8,1.001,True]
L1=[3,1,2,4]
L2=[‘A’,’b’,’c’,’d’]
L1.sort()
Count=0
V=0
for x in T:
V + = int(x)
print(V)
for x in L2:
L1[Count]+=ord(x)
Count+=1
print(L1)
Similar questions