mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 21:20:13 +01:00
5 lines
74 B
Python
5 lines
74 B
Python
# test bytes + other
|
|
|
|
print(b"123" + b"456")
|
|
print(b"123" + bytearray(2))
|