Combine for with range() to loop a specific number of times: python for i in range(5): print(i) Output: , , , , . The variable i takes each value from range().
Common patterns: python for i in range(1, 6): # 1 to 5 print(i) for i in range(0, 10, 2): # Even numbers 0-8 print(i) for i in range(5, 0, -1): # Countdown 5 to 1 print(i) This is Python's way of saying "repeat this N times" or "count from A to B".