Login
Remember
Register
Ask a Question
Read the Following program:
+1
vote
asked
Jan 19, 2021
in
Python
by
SakshiSharma
Read the Following program:
i = 1:
while True:
if i%3 == 0:
break
print(i)
Which of the following is the correct output of this program?
i) 1 2 3
ii) 3 2 1
iii) 1 2
iv) Invalid syntax
#python-error
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...