What is the difference between a FOR loop and WHILE loop and how do I write them?

A FOR loop runs for a certain amount of iterations before ending; the amount of loops is specified in the condition. A WHILE loop runs until a condition is met, so if the condition is never met then the WHILE loop would theoretically run forever. In Python a FOR loop can be written like this: (// means new line)
i = 1 // for i in range (1,5): // print("Hello World number:", i) // i = i + 1 // A WHILE loop is written like this: // x = 10 // while x > 0: // print("Hello World") // x = x-1

Answered by Sam B. Python tutor

1561 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Write a function s(n) that will return a list of the first n squares.


Create a program that takes in two numbers and returns the highest of the two


Explain why creating a list of several instances of one element using something like my_list = [a] * 5 can result in strange behaviour


Write a Python script to take a product name as input and then automatically google search reviews for it and open the top 3 search results in different tabs


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences