Let's say I have:
def foo(my_num, my_string):
    ...
And I want to dynamically create a function (something like a lambba) that already has my_string, and I only have to pass it my_num:
foo2 = ??(foo)('my_string_example')
foo2(5)
foo2(7)
Is there a way to do that?
