In Python Dictionary item() method is used to return a view object that displays a list of given dictionary’s key, value or tuple pairs.
Syntax:
No Parameters used in Dictionary item() method.
Example:
#dictionary method STUDENT = {'Name': 'Phillip', 'Class': '10'} print(STUDENT.items())