Suppose I have loaded this into a list:
info = ['apple: 1', 'orange: 2', 'grape: 3']
How can I turn that into something like
info = {line[0]: line[1] for line.split(': ') in info}
So that I actually have a dict?
|
Suppose I have loaded this into a list:
How can I turn that into something like
So that I actually have a dict? |
|||
|
|
|
You're very close!
You could do it the way you tried to in Python 2.7+, but you'd have to split the lines separately, so using Here's what I mean:
|
|||
|
|
|
You can write:
|
|||