Home / Programming MCQs / Python MCQs / Question
P
Q. What will be the output of the following Python code snippet?
z=set('abc$de') 'a' in z
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
What is the output of the following code? def foo(k): k[0] = 1 q = [0] foo(q) print(q)
What is the output of the following code?
What is the output of print 0.1 + 0.2 == 0.3?
Which one of the following is immutable data type?
Find the output of the below code.
What will be the output of the following code snippet?
Which of the following would give "Harry" as output? Given str1="Mary,Harry,John,Sam"
What is the output of the following program : i = 0 while i < 3: print i i += 1 else: print 0
Discusssion
Login to discuss.