Tagged Questions
3
votes
3answers
803 views
How do I create a unique value for each key using dict.fromkeys?
First, I'm new to Python, so I apologize if I've overlooked something, but I would like to use dict.fromkeys (or something similar) to create a dictionary of lists, the keys of which are provided in ...
2
votes
3answers
509 views
python dict.fromkeys() returns empty
I wrote the following function. It returns an empty dictionary when it should not. The code works on the command line without function. However I cannot see what is wrong with the function, so I have ...