4(a)
Consider the list
L1 = [ 'Rohit', 12, 'Manisha', 30 ]
L2 [ 'Sarika', 54 ]
What will be the output of the following?
print (L1 + L2)
L2 += L1
print(L2)
print (L2 * 2)
print (54 in L2)
print (“Manisha' not in L1)
Answers
Answered by
7
l2 +14 and you will get find it it is so and also please give points
Similar questions