You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
224 B
8 lines
224 B
# add a bytearray to itself
|
|
# This is not supported by CPython as of 3.11.18.
|
|
|
|
b = bytearray(b"123456789")
|
|
for _ in range(4):
|
|
c = bytearray(b) # extra allocation increases chance 'b' has to relocate
|
|
b += b
|
|
print(b)
|
|
|