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
0
the amount of something produced by a person, machine, or industry is called output
Answered by
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
Science,
2 months ago
Computer Science,
2 months ago
Biology,
11 months ago
Geography,
11 months ago
English,
11 months ago