# 2. Numbers in Python

There are two major types of numbers in python: **integer** (whole numbers) and **float** (decimal numbers). You can play with the two data types In a Python, as follow:

```python
23+54
>> 77

1.3+3.5
>> 4.8

1/2
>> 0.5
```

{% hint style="info" %}
Python ignore blank spaces when dealing with numbers. \
e.g. `23+54` and `23 + 54` are both OK.
{% endhint %}

You can also put numbers into variables (or placeholder of values), and perform operations on them.

```python
X=4
X-3
>> 1
```

{% hint style="info" %}
Note that upper case and lower case matters in Python variable names (case-sensitive).\
e.g. **`Y`**&#x61;n&#x64;**`y`**&#x61;re two different variables, and so ar&#x65;**`MyVariable`** and **`myvariable`**
{% endhint %}


---

# 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://eduapps.gitbook.io/python-intro/2.-numbers-in-python.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.
