Dictionary keys
Creates a flat list of all the keys in a flat dictionary.
- Use
dict.keys()
to return the keys in the given dictionary. - Return a
list()
of the previous result.
Creates a flat list of all the keys in a flat dictionary.
dict.keys()
to return the keys in the given dictionary.list()
of the previous result.