Question: (30 Pts.) Convert the following for loop into a while loop n=[] For Loop for x in range(100,0,-1): if x%10==0: n.append(x) print(n) While Loop
(30 Pts.) Convert the following for loop into a while loop n=[] For Loop for x in range(100,0,-1): if x%10==0: n.append(x) print(n) While Loop (Write your answer below)
Step by Step Solution
There are 3 Steps involved in it
Here is the equivalent while loop for the given for loop n x 100 while ... View full answer
Get step-by-step solutions from verified subject matter experts
