R
Q. What will the below Python code do?
set1={2,3} set2={3,2} set3={2,1} if(set1==set2): print("yes") else: print("no") if(set1==set3): print("yes") else: print("no")
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Write the output of the following:
Q. How will you get the second element in a list called "bus"?
Q. Which module in Python supports regular expressions?
Q. How many times will the loop run?
Q. Write the output of the following:
Q. What will be the output of the following Python code snippet?
Q. What is the output of the following code?
Q. Which is the correct operator for power(x to y)?
Q. Which of these in not a core data type?
Q. What is the output of the following Python code: print(2 * 3 + 5)?
Discusssion
Login to discuss.