Q. What will be the output of the following Python code snippet?
Code:
z=set('abc$de')
'a' in z
β
Correct Answer: (B)
True
z=set('abc$de')
'a' in z
You must be Logged in to update hint/solution