4 lines
93 B
Python
4 lines
93 B
Python
assert "Hello" == 'Hello'
|
|
assert '\t' == '\x09'
|
|
assert "one" < "two"
|
|
assert "two" >= "three"
|