S
Q. What will be the output of the following Python code?
i = 1 while True: if i%3 == 0: break print(i) i + = 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. How can assertions be disabled in Python?
Q. What will be the output of given Python code?
Q. Loops are known as ___ in programming.
Q. What is the output of the following code? def foo(k): k[0] = 1 q = [0] foo(q) print(q)
Q. What will be the output of following python code?
Discusssion
Login to discuss.