What do the keys(), values() and items() functions do ?
Question :
What do the keys(), values() and items() functions do ?
keys(): Returns a list of the keys.
values(): Returns a list of the values.
items(): Returns a list of tuples (key,value)
representing the key:value pairs.