You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
126 B
13 lines
126 B
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)
|
|
|