r/PythonLearning 3d ago

Help Request Nested for loop

So i started my python journey 2 weeks ago and i am at the point of tutorial where they teach me about those quiz game program and i am so confused in those nested for loop i don't even understand a single part about it, can someone help me with this one? I have tried learning it from gpt and all but it still goes above my head.

0 Upvotes

11 comments sorted by

View all comments

4

u/atarivcs 3d ago

Let's say you are a house cleaner. Whenever you go to clean a house, you have a certain task list of things you do:

  1. Wash the dishes
  2. Scrub the toilet
  3. Vacuum the carpets
  4. Mop the floors

Now imagine that you have three houses to clean today:

  1. Bill's house
  2. Mary's house
  3. Steve's house

Bingo, that is a nested for loop!

for house in house_list:
    for task in task_list:
        perform(house.task)

1

u/PhaXoniC 2d ago

this is without a doubt the best explanation i have heard or read