Computer Science, asked by kisorbhai68548, 2 months ago

Program:
i=0
while i<= 10:
print(i)
i=i+1​

Answers

Answered by kajalpal1975
0

Answer:

0

1

2

3

4

5

6

7

8

9

10

Explanation:

i is 0. Loop will run when i is less than or equal to 10.

i is incremented after printing i.

So, 0 to 10 will be printed.

Similar questions