我有一个文本文件保存在记事本中,但移到了我的 python 文件夹中,该文件夹的左侧有一个国家/地区的三个字母的首字母缩写词,然后在右侧大约有四个或五个空格,它具有与其对应的国家/地区,如下所示:
AFG 阿富汗
ARM 亚美尼亚
等
我需要字典使用三个字母作为键,国家作为值。它拥有每个参加奥运会的国家。这是我的代码到目前为止的样子:
def country(fileName):
infile = open(fileName,'r')
countryDict = {}
for line in infile:
key,value = line.split()
countryDict[key] = value
print(countryDict)
return countryDict
country('CountryCodes.txt')