Computer Science, asked by aaryan458, 7 months ago

Rewrite the following program after correcting the syntactical errors:

a) i=10

while i >= 5:

PRINT (I)

i = i+1

2​

Answers

Answered by Anonymous
1

i = 10

while i >= 5:

   print(i)

   i = i+1

#Errors were PRINT(I) is incorrect, instead, use print(i), there will be no 2 in the code without any valid statement.

Similar questions