(MY CODE)`
o = [1,1,1,2,3,4]
if 99 and 98 or 97 and 96 in o:
print("j")
#(OUTPUT)
j
why is output j? none of 99, 98, 97 or 96 is in o. even if i add parenthesis and "in o" after 99, 98 etc,
i still get same thing. im using vscode if it makes any difference