Advertisements
Advertisements
प्रश्न
Predict the output of the Python code given below:
tuple1 = (11, 22, 33, 44, 55 ,66)
list1 =list(tuple1)
new_list = []
for i in list1:
if i%2==0:
new_list.append(i)
new_tuple = tuple(new_list)
print(new_tuple)संख्यात्मक
एका वाक्यात उत्तर
Advertisements
उत्तर
(22,44,66)
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
