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

1590 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Which function is ran when an object is instantiated?


What is the outcome of the following code? print(2*[3,4,5])


Write a function that takes an imput (call it usr_in), the user's age (usr_age) and the user's name (usr_nm) and outputs the following string: "Hi, My name is [usr_nm], I am [usr_age] years old, and my favorite number is [usr_in]"


What are the main data structures that I can use in Python


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