+1 vote
in Python by
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

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
0 votes
asked Jan 19, 2021 in Python by SakshiSharma
...