What if we want to get a list of keys, though? Well, there's a method that returns a dictionary's keys instead of its values.

Fantastic! The keys() method returns a list of the keys in the dictionary.

Psst: have you noticed the reverse order of the keys? Actually, dictionaries don't have an order, which makes it impossible to predict these positions.

Don't we call methods by putting parentheses after their names?