Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Read the Following program:
Home
Python
Read the Following program:
+1
vote
asked
Jan 19, 2021
in
Python
by
SakshiSharma
Read the Following program:
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)
What will be the output of this statement?
i) 1 2 3
ii) 0 1 2 3
iii) 0 1 2
iv) 3 2 1
#python-output
#program-output
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...