Files
TencentOS-tiny/components/language/micropython/tests/basics/bytes_subscr.py
2022-09-29 12:10:37 +08:00

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')