Skip to content
Advertisement

How can I convert a dictionary into a list of tuples?

If I have a dictionary like:

JavaScript

How can I convert it to this?

JavaScript

And how can I convert it to this?

JavaScript

Advertisement

Answer

JavaScript

For Python 3.6 and later, the order of the list is what you would expect.

In Python 2, you don’t need list.

Advertisement