Python Taskbook Level 4.9
Use loops to generate the following list:
[
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
]
Given text:
'''
a-1
b-2
c-3
d-4
e-5
'''
Split this string into a dictionary like this:
{
'a': 1
'b': 2
'c': 3
'd': 4
'e': 5
}