6. Rewrite the following while loop into for loop:
b) i=88
while(i)=8):
print i
i-= 8
Answers
Answered by
1
Answer:
for i in range(88, 9, -8) print I
Similar questions