wite a python function to create and return a new dictionary from the given dictionary with elements having price more than 200 code example
Example: how to write a dict in pytohn
# get vs [] for retrieving elements
my_dict = {'name': 'Jack', 'age': 26}
# Output: Jack
print(my_dict['name'])
# Output: 26
print(my_dict.get('age'))