👉 In programming, a `for` loop is used to repeat a block of code that performs a task repeatedly until one condition is met. The syntax typically follows:
```python
for variable in range(start, end):
```
Here's how it works step by step:
1.
Variable
: This is the name you give to the variable inside the loop.
2.
Range
: It specifies the starting and ending points of the loop.
3.
Start
: The value that is used as