Computer Science, asked by atharvas309, 3 days ago

ii=6
while i<5:
    print(i)
    i+=1​

in python

Answers

Answered by SpandanMukherjee428
1

Answer:

The output will be blank as the value of i is already above 5. The while loop checks if i < 5 and it sees its already 6 so it does not execute as it it instructed to execute only if i < 5.

Similar questions