my_dict = {
'a': 10,
'b': 11,
'c': 77,
'd': 24,
'e': 13
}
# write function here...
def check_for_value(
print(check_for_value(3)) # expected: False
print(check_for_value(10)) # expected: True
print(check_for_value(24)) # expected: True
print(check_for_value(80)) # expected: False
Python
Setting up Python environment...
Output