Is there a way to set a default parameter value in a function to be another one of the parameters?
I.e.
def (input1, input2 = input1)
I figure I can do something like what’s shown below, but want to know if there’s a better way
def (input1, input2 = 'blank')
If input2 == 'blank':
input2 = input1