Dictionary values() method

In Python Dictionary values() method is used to return a view object that displays a list of all the values in the given dictionary.

Syntax:
No Parameters used in Dictionary values() method.
Example:
#dictionary method

STUDENT = {'Name': 'Phillip', 'Class': '10', 'Subject': 'Science'}
print(STUDENT.values())