Computer Science, asked by tulsihebbar, 10 months ago

Rewrite the following for loop into while loop
for a in range(90,9,-9):
for b in range(0,a,3):
print a
print('' '')

Answers

Answered by pavithranatarajan855
1

Answer:

a=90

b=0

while(a>9):

a=a-9

while(b<a):

b=b+3

print(a)

print(" ")

Explanation:

Similar questions