Computer Science, asked by mohddkaifff18, 6 hours ago

6. Rewrite the following while loop into for loop:
b) i=88
while(i)=8):
print i
i-= 8​

Answers

Answered by nisha1077
1

Answer:

for i in range(88, 9, -8) print I

Similar questions