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?
for i in range(5):
if i == 5:
break
else:
print(i)
else:
print("Here")
a. 1 2 3 4 5
b. 0 1 2 3 4
c. 0 1 2 3 4 5 Here
d. 0 1 2 3 4 Here
#python
#ball-python
#java
#python-tutorial
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 11, 2019
by
rajeshsharma
Answer is a
0 1 2 3 4
...