For example, I have a dictionary, which is like:
Degree = {'Union': u'1', 'Cook': u'3', 'Champaign': u'7'}
How can I convert it as:
Degree = {'Union': 1, 'Cook': 3, 'Champaign': 7}
I know it's not a hard question, but I try many methods, like json, *.items... but I just do not get it.