mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02:00
14 lines
126 B
Python
14 lines
126 B
Python
l = [1, 2, 3]
|
|
print(l)
|
|
del l[0]
|
|
print(l)
|
|
del l[-1]
|
|
print(l)
|
|
|
|
d = {1:2, 3:4, 5:6}
|
|
del d[1]
|
|
del d[3]
|
|
print(d)
|
|
del d[5]
|
|
print(d)
|