mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
6 lines
107 B
Python
6 lines
107 B
Python
a = '12345'
|
|
assert a.encode() == b'12345'
|
|
|
|
assert b'\xff\xee' != b'1234'
|
|
assert b'\xff\xee' == b'\xff\xee'
|