def big_keys(dicta,x):
for k in dicta:
if x < dicta.get(k,0):
return k
for this function, I want it to input dicta which is a dictionary and x is int. and it should return all the k that have value more than x. however it only return one of the k and not all of them.
e.g big_keys({"a":20 ,"b":20 ,"c":10},15)
→ ["a", "b"]
but my out put is ["a"]