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.
12 lines
237 B
12 lines
237 B
d = {1: 2, 3: 4}
|
|
print(d.pop(3), d)
|
|
print(d)
|
|
print(d.pop(1, 42), d)
|
|
print(d.pop(1, 42), d)
|
|
print(d.pop(1, None), d)
|
|
try:
|
|
print(d.pop(1), "!!!",)
|
|
except KeyError:
|
|
print("Raised KeyError")
|
|
else:
|
|
print("Did not rise KeyError!")
|
|
|