Convert the following code to a for loop
while (b < a) :
b = b + 1
print b

Try to some code something yourself next time,not just ask for a soultion.

b = 0
a = 5

while b < a:
    b = b + 1
    print b

#-----------
for i in range(1,6):
    print i
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.