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.
16 lines
355 B
16 lines
355 B
try:
|
|
from collections import OrderedDict
|
|
except ImportError:
|
|
try:
|
|
from _collections import OrderedDict
|
|
except ImportError:
|
|
print("SKIP")
|
|
import sys
|
|
sys.exit()
|
|
|
|
d = OrderedDict([(10, 20), ("b", 100), (1, 2)])
|
|
print(list(d.keys()))
|
|
print(list(d.values()))
|
|
del d["b"]
|
|
print(list(d.keys()))
|
|
print(list(d.values()))
|
|
|