# for loop - range (three arguments)

## Objective

After working through this lesson, you’ll be able to

* Write Python code using the for loop using the range function with three arguments.

## Introductory Problem

Using a for loop, print numbers 2 - 10 &#x20;

{% code title="intro.py" %}

```python
done = False
while not done:
    print("Menu")
    print("I - Introductory Problem")
    print("Q - Quit")
    choice = input("Choice: ")
    if choice == "I":
        print("Introductory Problem")
        for x in range(2,11):
            print(x)
    elif choice == "Q":
        print("Exiting Game!")
        done = True
```

{% endcode %}

## for loop <a href="#for-loop" id="for-loop"></a>

With three arguments, the sequence starts at the first value, ends before the second argument and increments or decrements by the third value.

![](/files/-Ld1TFkOIEArjlGIZDcn)

![](/files/-Ld1UB7GKmc61Y8xNSLR)

## Examples

### Example 1

Write Python code that prints even numbers from 2 - 10 (inclusive).

{% code title="example1.py" %}

```python
done = False
while not done:
    print("Menu")
    print("E1 - Example 1")
    print("Q - Quit")
    choice = input("Choice: ")
    if choice == "E1":
        print("Example 1")
        for x in range(2,11,2):
            print(x)
    elif choice == "Q":
        print("Exiting Game!")
        done = True
```

{% endcode %}

### Example 2

Write Python code that prints numbers from 10 - 0 (inclusive).

{% code title="example2.py" %}

```python
done = False
while not done:
    print("Menu")
    print("E2 - Example 2")
    print("Q - Quit")
    choice = input("Choice: ")
    if choice == "E1":
        print("Example 1")
        for x in range(10,-1,-1):
            print(x)
    elif choice == "Q":
        print("Exiting Game!")
        done = True
```

{% endcode %}

### Example 3

Assuming the ocean’s level is currently rising at about 1.7 millimeters per year, write Python code that displays the number of millimeters that the ocean will have risen every 5 years for the next 25 years.  Start with the year 2018.

Start your code with the heading:

print("Year\tIncrease in mm")

print("----------------------")<br>

{% code title="example3.py" %}

```python
done = False
while not done:
    print("Menu")
    print("E3 - Example 3")
    print("Q - Quit")
    choice = input("Choice: ")
    if choice == "E3":
        print("Year\tIncrease in mm")
        rise = 0
        for x in range(2018,2044,5):
            print(x,"\t",rise*8.5)
            rise = rise + 1
    elif choice == "Q":
        print("Exiting Game!")
        done = True
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pythonclassroom.com/loops/for-loop-range-three-arguments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
