Skip to content
beginner

While Loops in Python

Have you ever found yourself doing something over and over until something changes? Maybe you keep checking your phone until your friend replies, or you…

Published 2026-05-11Updated 2026-05-128 min read

Have you ever found yourself doing something over and over until something changes? Maybe you keep checking your phone until your friend replies, or you stir your soup until it’s hot enough. In programming, we often need to repeat actions like this—and that’s where the while loop comes in!

Let’s explore how the Python while loop helps us repeat actions, why it’s useful, and how you can start using it in your own programs.


What Is a While Loop?

A while loop is a way to tell your Python program: “Keep doing this action as long as this condition is true.” It’s like giving your computer instructions to repeat a task until something changes.

Think of it like this:
Imagine you’re filling a glass of water. You keep pouring until the glass is full. The action (pouring water) repeats while the condition (glass is not full) is true. Once the glass is full, you stop.

In Python, a while loop lets you repeat code until a certain condition is no longer true. This is super helpful when you want your program to keep running a task, like asking a user for input, until they give a valid answer.

Quiz Question 1

Question: What does a Python while loop do?

  • A) Repeats a block of code as long as a condition is true
  • B) Executes code only once
  • C) Repeats code a fixed number of times
  • D) Sorts a list of items

How While Loops Work in Python

Let’s look at the basic structure of a python while loop:

while condition:
    # Do something
  • condition: This is a test that Python checks before each repeat. If it’s True, the loop runs. If it’s False, the loop stops.
  • The code inside the loop (indented under while) will keep running again and again, as long as the condition stays true.

What happens when the condition is false?
As soon as the condition becomes false, Python skips the loop and moves on to the next part of your program.

Example: Counting from 1 to 5

count = 1
while count <= 5:
    print(count)
    count = count + 1
  • Here, Python prints the value of count as long as count is less than or equal to 5.
  • Each time, it adds 1 to count.
  • When count becomes 6, the condition is false, and the loop stops.

Quiz Question 2

Question: What happens if you forget to update the variable used in the while loop's condition?

  • A) The loop runs only once
  • B) The loop never runs
  • C) The loop may run forever (infinite loop)
  • D) The loop gives an error

Common Uses for While Loops

While loops are great for situations where you don’t know ahead of time how many times you’ll need to repeat something. Here are some practical uses:

  • Repeating actions until a user chooses to stop
    For example, keep asking a user for input until they type “quit”.

  • Counting or processing items until a condition is met
    Like counting down until a timer reaches zero.

  • Simple games or input validation
    For example, asking for a password until the user gets it right.

Example: Asking for a password

password = ""
while password != "python123":
    password = input("Enter the password: ")
print("Access granted!")

This loop keeps asking for the password until the user types the correct one.

Quiz Question 3

Question: When would you choose a while loop instead of a for loop?

  • A) When you know exactly how many times to repeat
  • B) When you want to repeat until a condition is met, but don't know how many times
  • C) When you want to sort a list
  • D) When you want to print a message once

Tips for Avoiding Infinite Loops

A common mistake when using python while loops is creating an infinite loop—a loop that never stops!

What is an infinite loop?
It’s when the loop’s condition never becomes false, so the code inside keeps running forever.

How to avoid infinite loops:

  • Make sure your loop’s condition will eventually become false.
  • Update the variables involved in the condition inside the loop.

Example of an infinite loop (don’t do this!):

count = 1
while count <= 5:
    print(count)
    # Oops! We forgot to update count

In this case, count never changes, so the condition is always true, and the loop never ends.

How to fix it:
Always check that something inside your loop changes the condition, so the loop can finish.

Quiz Question 4

Question: What is an "infinite loop" in Python?

  • A) A loop that runs a set number of times
  • B) A loop that never runs
  • C) A loop that never stops running
  • D) A loop that sorts numbers

When to Use While Loops vs. Other Loops

Python has another popular way to repeat actions: the for loop.

  • While loops are best when you don’t know exactly how many times you’ll need to repeat something. You just know the condition that needs to stay true.
  • For loops are better when you know ahead of time how many times you want to repeat an action (like looping through a list of items).

Choose a while loop when:

  • You’re waiting for a user to give a certain answer.
  • You’re repeating until a specific condition is met, but you don’t know how many repeats it will take.

Practice: Test Your Understanding

Ready to check your knowledge? Try these quick questions:

Quiz Question 5

Question: Which of the following is a good reason to use a while loop?

  • A) You want to repeat code a fixed number of times
  • B) You want to repeat code until a user enters a specific value
  • C) You want to print one message
  • D) You want to define a function

Quiz Question 6

Question: Is indentation important inside a while loop in Python?

  • A) No, indentation doesn't matter
  • B) Yes, indentation shows which code is inside the loop
  • C) Only for comments
  • D) Only for variable names

Try writing a simple while loop that counts down from 5 to 1.
Bonus: Write a program that keeps asking the user to enter a number until they type a number greater than 10.

The best way to learn is by doing! Open up your Python editor and experiment with these ideas. Don’t worry if you make mistakes—that’s how you learn.


Conclusion

While loops are a powerful tool for repeating actions in Python. They let your programs keep working until just the right moment, making your code flexible and interactive. With a solid understanding of python while loops, you’re on your way to building smarter, more useful programs.

Keep practicing, try out your own ideas, and soon you’ll be using python loops with confidence!


Quiz Answer Key

Question 1

Correct answer: A) Repeats a block of code as long as a condition is true

Explanation: A while loop keeps running the code inside it as long as its condition remains true.


Question 2

Correct answer: C) The loop may run forever (infinite loop)

Explanation: If you forget to update the variable in the condition, the loop's condition might always be true, causing an infinite loop.


Question 3

Correct answer: B) When you want to repeat until a condition is met, but don't know how many times

Explanation: While loops are best when you don't know in advance how many times you'll need to repeat something.


Question 4

Correct answer: C) A loop that never stops running

Explanation: An infinite loop is a loop whose condition never becomes false, so it never ends.


Question 5

Correct answer: B) You want to repeat code until a user enters a specific value

Explanation: While loops are perfect for repeating actions until a certain condition is met, like getting valid user input.


Question 6

Correct answer: B) Yes, indentation shows which code is inside the loop

Explanation: Indentation is how Python knows which lines of code are part of the loop. Without it, your code won't work as expected.

Keep learning

Related tutorials

Continue with nearby Python topics and beginner-friendly explanations.

beginner8 min read

For Loops in Python

Are you ready to make your Python code smarter and more powerful? One of the first big steps is learning how to repeat actions automatically. In this…

Read tutorial
beginner8 min read

If Statements in Python

Have you ever wondered how computers can play games, check passwords, or recommend what to watch next? The secret lies in their ability to make…

Read tutorial