Hi so I wanted to generate a dict of the python alphabet in the form
{'a':'a', 'b':'b', 'c':'c'....}
The link here was pretty helpful, but when I replace the last 0 in there with string.ascii.lowercase, I get this:
{'a': 'abcdefghijklmnopqrstuvwxyz', 'b': 'abcdefghijklmnopqrstuvwxyz', 'c': 'abcdefghijklmnopqrstuvwxyz'...}
So, how can I fix this?