Question: b. Rewrite the following loop using a for loop instead of a while loop and without using an if statement: (2 marks) x=0 y=100 t=0
b. Rewrite the following loop using a for loop instead of a while loop and without using an if statement: (2 marks)
x=0
y=100
t=0
while t>=x and t<=y:
if t%2 ==0 :
print(t)
t+=1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
