mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 12:40:15 +01:00
6 lines
155 B
Python
6 lines
155 B
Python
print(b"1" == 1)
|
|
print(b"123" == bytearray(b"123"))
|
|
print(b'123' < bytearray(b"124"))
|
|
print(b'123' > bytearray(b"122"))
|
|
print(bytearray(b"23") in b"1234")
|