Example program,
1.
while True:
sucess, image = cv2.imshow(img)
while True:
_,frame = cv2.imread()
what does the syntax mean? what do they mean by assigning two variables for one value? is sucess some inbuilt command?
a,b = c
That syntax means that c is expected to be a sequence of two values. The first value is assigned to a, and the second value is assigned to b.
_tells python that that variable is not needed so it gets garbage collected or sthname, age = 'Bob', 45.while True._is a standard practice to indicate the variable is not used.