이항 연산자를 사용하면 bytes를 bytes와 비교하거나 str을 str과 비교할 수 있다.
assert b'red' > b'blue' assert 'red' > 'blue'
하지만 str 인스턴스와 bytes 인스턴스를 비교할 수는 없다.
assert 'red' > b'blue' >>> Traceback ... TypeError: '>' not supported between instances of 'str' and 'bytes'
bytes 인스턴스와 str 인스턴스를 비교할 수도 없다.
assert b'blue' < 'red' >>> Traceback ... TypeError: '<' not supported between instances of 'bytes' and 'str'