A
Q. Output of the following python program will be?
Code:
List = [True, 50, 10]
List.insert(2, 5)
print(List, "Sum is: ", sum(List))
List.insert(2, 5)
print(List, "Sum is: ", sum(List))
- Correct Answer - Option(D)
- Views: 7
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.