Saved Bookmarks
| 1. |
4(a)Consider the listL1 = [ 'Rohit', 12, 'Manisha', 30 ]L2 [ 'Sarika', 54 ]What will be the output of the following?print (L1 + L2)L2 += L1print(L2)print (L2 * 2)print (54 in L2)print (“Manisha' not in L1) |
|
Answer» L2 +14 and you will get FIND it it is so and also please GIVE POINTS |
|