> For the complete documentation index, see [llms.txt](https://docs.arkannis.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkannis.net/programming/courses/python-pcap-31-03-course/overview-and-introduction/basics-of-variables.md).

# Basics of variables

## Variables are containers that are used to store data

Example:

```python
number = 77
print(number)
```

Expression:

```python
weight = 22
number = 77

answer = number + weight
# reutrns 99
```

Concatenation = adding STRINGS together - `Concatenation only works with strings`

```python
first_name = tinerica
last_name = popica

name = first_name + lastname
print(name) #returns tinericapopica
```
