Computer Science, asked by lukareinerfinn, 5 months ago

1. What is output.
I=10
While(i<=15)
Print(i,end='\t')
I=i+1
else
Print("\n value of i when the loop exit”, i)​

Answers

Answered by limbushyam98
0

the amount of something produced by a person, machine, or industry is called output

Answered by BrainlyProgrammer
1

Answer:

There are multiple errors in your code,

Here is the correct code:

I=10

while(I<=15):

print(I,end='\t')

I=I+1

print("\n value of I when the loop exit",I)

---------------------Output--------------

10 11 12 13 14 15

value of I when the loop exit 16

________________________

Similar questions