我想将列表中的项目(例如[1,2,3,4,5,6,7,8,9]
)翻译成另一个列表中的项目(例如这些数字的名称)。
此外,我希望能够进行翻译,以便当用户输入'1'时,打印“one”,类似地输入'2'等等。
这是我到目前为止的代码:
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
names = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven',
'eight', 'nine']
myDict = dict(zip(numbers, names))
答案 0 :(得分:2)
使用input
功能将允许您接受来自用户的输入并进行查找(如果我理解您的要求):
>>> mydict = {'nom':'singe', 'poids':70, 'taille':1.75}
>>> myvar = input()
nom
>>> print(mydict[myvar])
singe
答案 1 :(得分:0)
它不会打印“nom piods”,因为你没有“nom poids”的键。
这将做你想要的:
mydict = {'nom':'x', 'poids':'y','foo':'bar'}
print mydict['nom'],mydict['poids']
如果你将永远使用数字;而不是言语 - 你可以这样做:
words = ['zero','one','two','three','four','five']
print words[0] # This will print 'zero'
print words[1] # This will print 'one'
print words['1'] # This will not work, you need to use 1 and not '1'