p
Size: a a a
p
СК
D
D
СК
СК
D
СК
СК
D
D
СК
python
Python 3.7.4 (default, Jul 28 2019, 22:33:35)
[Clang 8.0.7 (https://android.googlesource.com/toolchain/clang b55f2d4ebfd35bf6 on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> bytearray(10)
bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
>>>
D
python
Python 3.7.4 (default, Jul 28 2019, 22:33:35)
[Clang 8.0.7 (https://android.googlesource.com/toolchain/clang b55f2d4ebfd35bf6 on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> bytearray(10)
bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
>>>
D
D
D
СК
СК
>>> b = bytearray(10)
>>> for i in range(10):
... b[i] = i*2
...
>>> b
bytearray(b'\x00\x02\x04\x06\x08\n\x0c\x0e\x10\x12')
>>>
БГ