Is it possible to ignore passed/overgiven arguments in a method?
Here is an example from something I want to do:
def event_handler(one, two):
print(one)
print(two)
And at another place:
event_handler(one, two, three)
I mean that the third argument is optional. I've tried in Python Fiddle, but it doesn't work without an error.