I trying to create functions by gitting functions names from giving dictionary, actually, I'm not sure if this is possible, her is what I'm trying to do:
def functions_factory(my_dict):
for the name in my_dict:
create_function(name)
def create_function(function_name):
x=0
# **code implentation:** here should write a code that can create function with name = <function_name>