Get a List of Dictionary Keys in Python

In Python, you can add dictionary keys to a list. This can be achieved with the keys function of a dictionary.

The keys function is used in the for loop to get the key part, instead of the value. Each key is added at the end of the my_list list using the append function.

If you print the list, you are going to get the list of dictionary keys:

['firstname', 'lastname', 'age']