I have a python function which takes few required arguments together few default arguments, but when I tried as fzumstein mentioned it doesn't works as expected. What am I doing wrong?
def Doublesum(a, b=1):
return (a + b)**2
In excel:
=Doublesum(1)
This returns no value, i.e., #Value!
. I have installed xlwings version 0.7.2.