A
Q. What will be the output of following Python code?
Code:
list1=[1,3,4,2]
x=list1.pop(2)
print(set([x]))
x=list1.pop(2)
print(set([x]))
- Correct Answer - Option(D)
- Views: 8
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.