mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
16 lines
205 B
Python
16 lines
205 B
Python
# test [...] of bytes
|
|
|
|
print(b'123'[0])
|
|
print(b'123'[1])
|
|
print(b'123'[-1])
|
|
|
|
try:
|
|
b'123'[1] = 4
|
|
except TypeError:
|
|
print('TypeError')
|
|
|
|
try:
|
|
del b'123'[1]
|
|
except TypeError:
|
|
print('TypeError')
|