0 votes
in Python by

Read the Following program:

x = 1  

while True:  

    if x % 5 = = 0:  

        break  

    print(x)   

    x + = 1  

What will be the output of this code?

i) error

ii) 2 1

iii) 0 3 1

iv) None of these

Related questions

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