A
Q. What will be the output of the following code snippet?
count = 0 while(True): if count % 3 == 0: print(count, end = " ") if(count > 15): break; count += 1
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. Suppose we have two sets A & B, then A < B is:
Q. What is a variable defined outside a function referred to as?
Q. What is the output of the following code?
Q. Which of the following is NOT a valid Python tag?
Q. What will the below Python code do?
Q. Which of the following functions converts a “string” to “float” in Python?
Q. What is the output of the following Python code?
Q. What will be the values of var1 and var2 after the execution of program?
Discusssion
Login to discuss.