I was wondering if it is possible in Python to specify a default argument to a function attribute in Python (I know this is not the right terminology so here is an example):
def foo(x, y):
return x + y
my_foo = foo(y=50)
my_foo(25) #returns 75
Does this sound possible?