In Python (assuming a function parameter's default value is None
),
is there any difference between passing in the keyword parameter
(when calling the function) as None
, and not passing it in at all?
I just want to make sure there isn't some subtle semantic difference between the two.
I am talking about this one in particular scipy.optimize.curve_fit.
and the p0
parameter.