Files
2026-05-12 12:51:49 +03:30

6 lines
85 B
Python

b = bytearray()
print(b.append(10))
print(b.append(20))
print(b.append(80))
print(b)