0 votes
in Python by
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

1 Answer

0 votes
by

Answer is a

0 1 2 3 4

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 13, 2019 in Python by Derya
...