Toby Berla added the comment:
Thanks, Eric. (I'm new to Python.) Perhaps I should have paid closer attention
to the description of the dictionary data structure --
"Performing list(d.keys()) on a dictionary returns a list of all the keys used
in the dictionary, in arbit
New submission from Toby Berla :
in https://docs.python.org/3/tutorial/datastructures.html:
-
5.5. Dictionaries
...
Here is a small example using a dictionary:
>>>
>>> tel = {'jack': 4098, 'sape': 4139}
>>> tel['guido'] = 4127
>