Good evening, my question is about a piece of code I found in a book about Python and OpenCV. The author created the function that I will put below:
@property
def frame(self):
if self._enteredFrame and self._frame is None:
_, self._frame = self._capture.retrieve()
return self._frame
My question is regarding the line: _, self._frame = self._capture.retrieve (). Why does an underline and a comma before self._frame = ...?