Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:43:50 +03:00
parent ab1ea476c5
commit a5ca5190e5
169 changed files with 0 additions and 626 deletions

View File

@ -0,0 +1,22 @@
---
title: Dictionary to list
type: snippet
tags: [dictionary,list]
cover: new-york
dateModified: 2020-11-02T19:27:53+02:00
---
Converts a dictionary to a list of tuples.
- Use `dict.items()` and `list()` to get a list of tuples from the given dictionary.
```py
def dict_to_list(d):
return list(d.items())
```
```py
d = {'one': 1, 'three': 3, 'five': 5, 'two': 2, 'four': 4}
dict_to_list(d)
# [('one', 1), ('three', 3), ('five', 5), ('two', 2), ('four', 4)]
```