Dictionary copy() method

In Python Dictionary copy() method is used to return a shallow copy of the given dictionary.

Syntax:
Dictionary Copy() method don’t have any Parameter.
Example:
#dictionary method

#dictionary method

STUDENT = {'Name': 'Phillip', 'Class': '10'}
COPY=STUDENT.copy()
print('STUDENT', STUDENT )
print('COPY=', COPY)