답변:
다음은 부울입니다.
if (not suffix == "flac" ) or (not suffix == "cue" ): # WRONG! FAILS
print filename + ' is not a flac or cue file'
그러나
if not (suffix == "flac" or suffix == "cue" ): # CORRECT!
print filename + ' is not a flac or cue file'
(not a) or (not b) == not ( a and b )
, a와 b가 모두 참인 경우에만 거짓입니다.
not (a or b)
a와 be가 모두 거짓 인 경우에만 참입니다.