# Basic Data Types

## Integer

Numbers such as 1,2,3,99

## String

Characters such as 'nfakjd34'

## Boolean

Stores True or False values

## Float

Stores DECIMAL numbers

## Function type:

```python
print(type(12))
#returns int

print(type('number'))
#returns str

print(type(12.08))
#returns float

#boolean
adult = True
print(type(adult))
# returns bool
```

## Dynamic Typing in Python:

`Same variable can change types`

```python
adult = True
pass
# extra code
adult = 5
print(type(adult))
# returns int eventhough adult started as bool
```


---

# 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://docs.arkannis.net/programming/courses/python-pcap-31-03-course/overview-and-introduction/basic-data-types.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.
