in Python by (515 points)
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 (23.9k points)

Answer is a

0 1 2 3 4

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya (515 points)
0 votes
asked Jun 13, 2019 in Python by Derya (515 points)
0 votes
asked Jun 13, 2019 in Python by Derya (515 points)
...