> For the complete documentation index, see [llms.txt](https://alhorm-projects.gitbook.io/sprut/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alhorm-projects.gitbook.io/sprut/basics/data-types/dicts.md).

# Словари

Создание словаря в Sprut:

```python
my_dict = {"key": "value"}
```

Обращение к элементу словаря:

```python
println my_dict["key"]
```

Или:

```python
println my_dict.key
```
