micropython/tests/basics/bytes_add.py
2017-03-09 00:07:19 +01:00

5 lines
74 B
Python

# test bytes + other
print(b"123" + b"456")
print(b"123" + bytearray(2))