Determine if the dict is empty
Return True if the given dict has no key-value pair. Otherwise False.
Sample Code:
def emptyDict(d):
# Enter your logic here...
Examples:
Input: {}
Output: True
Explanation: The given dict has no key-value pair.
Input: {'lang':'Python'}
Output: False
Explanation: The given dict is not empty.