Tagged Questions
2
votes
3answers
818 views
Setting the default value of a function input to equal another input in Python
Consider the following function, which does not work in Python, but I will use to explain what I need to do.
def exampleFunction(a, b, c = a):
...function body...
That is I want to assign to ...