Does anybody have an idea, how to check the value of a variable a == 0 from an multiple return value function in a single IF statement like below,
if (a, b, c = some_function()) == 0: #currently it is wrong
    ...
    ...
else:
    ...
    ...
def some_function():
    return 0, 123, "hello"
 
     
    