+1 vote
in Python by
Read the Following program:

a = 1  

while True:  

    if a % 7 = = 0:  

        break  

    print(i)  

    a += 1  

Which of the following is correct output of this program?

i) 1 2 3 4 5

ii) 1 2 3 4 5 6

iii) 1 2 3 4 5 6 7

iv) Invalid syntax

Related questions

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