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. Which function is called when the following Python program is executed?
Q. What will be displayed by the following code?
Q. What does the 'continue' statement do in a loop in Python?
Q. Which of the following two will give the same result? (i) 42//2 (ii) 21%6 (iii) 12/4 (iv) 11*2
Q. Which of the following is not a keyword in Python language?
Q. ____ is an empty statement in Python.
Q. What will be displayed by the following code?
Q. What is the function that compares the elements of the two lists?
Q. A text file contains only textual information consisting of ___.
Discusssion
Login to discuss.