5 lines
74 B
Python
5 lines
74 B
Python
# test bytes + other
|
|
|
|
print(b"123" + b"456")
|
|
print(b"123" + bytearray(2))
|