RosettaCodeData/Task/Binary-strings/Python/binary-strings-3.py
2023-07-01 13:44:08 -04:00

4 lines
93 B
Python

assert "Hello" == 'Hello'
assert '\t' == '\x09'
assert "one" < "two"
assert "two" >= "three"