RosettaCodeData/Task/Associative-array-Iteration/11l/associative-array-iteration.11l

11 lines
174 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
V d = [key1 = value1, key2 = value2]
L(key, value) d
print(key = value)
L(key) d.keys()
print(key)
L(value) d.values()
print(value)