In this line
def onFaceDetected(self, *_args):
from this tutorial, what is the meaning of *_args as a parameter to a Python module's method?
I've seen lots of explanations for just an asterisk or just an underscore, but not both.
In this line
def onFaceDetected(self, *_args):
from this tutorial, what is the meaning of *_args as a parameter to a Python module's method?
I've seen lots of explanations for just an asterisk or just an underscore, but not both.