Whoa! This problem is much more complex than the usual one and requires knowledge of For Loop. If you're feeling up to the challenge, brace yourself and good luck! Otherwise, you can skip it for now and return any time later
Write a program that creates a dictionary of objects as keys and their hash values as values. Objects are stored in the list objects. The resulting dictionary should be called objects_dict. Do not print anything!
Some objects in the objects list may be unhashable. This means that you cannot calculate their hash values and add them as dictionary keys. Make sure to skip such objects when creating the objects_dict!
Tip: You can either directly check if an object is hashable or not or handle exceptions.