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=[] 

(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

1 Expert Approved Answer
Step: 1 Unlock

Here is the equivalent while loop for the given for loop n x 100 while ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!