Login
Remember
Register
Ask a Question
What is the output of the following?
0
votes
asked
Jun 13, 2019
in
Python
by
Derya
What is the output of the following?
i = 1
while True:
if i%3 == 0:
break
print(i)
i + = 1
a. error
b. 1 2
c. none of the mentioned
d. 1 2 3.
#python
#python-tutorial
#ball-python
#java
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...