RosettaCodeData/Task/Binary-strings/Python/binary-strings-3.py

5 lines
93 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
assert "Hello" == 'Hello'
assert '\t' == '\x09'
assert "one" < "two"
assert "two" >= "three"