标签: dictionary casting python-3.7
dict = {'1':'one','2':'two','3':'three'} dict.keys() #returns dict_keys([1, 2, 3])
为什么.keys()方法将数字字符串转换为整数?目的/理由是什么?