I'm currently setting up a dictionary and am attempting to convert the values associated with a key from strings to integers. So I'm trying to go from this:
{'Georgia': ['18', '13', '8', '14']}
To this:
{'Georgia': [18, 13, 8, 14]}
Any ideas on how I would go about doing this?