mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 19:00:50 +02:00
15 lines
177 B
Python
15 lines
177 B
Python
print(bytearray(4))
|
|
a = bytearray([1, 2, 200])
|
|
print(a[0], a[2])
|
|
print(a[-1])
|
|
print(a)
|
|
a[2] = 255
|
|
print(a[-1])
|
|
a.append(10)
|
|
print(len(a))
|
|
|
|
s = 0
|
|
for i in a:
|
|
s += i
|
|
print(s)
|