Advertisements
Advertisements
Question
Rewrite the following for loop into while loop.
for a in range(90,9,-9):
print aCode Writing
Advertisements
Solution
a = 90
while a > 9:
print(a)
a -= 9shaalaa.com
Is there an error in this question or solution?
