mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
8 lines
77 B
Python
8 lines
77 B
Python
# tuple slicing
|
|
|
|
x = (1, 2, 3 * 4)
|
|
|
|
print(x[1:])
|
|
print(x[:-1])
|
|
print(x[2:3])
|