如何将字典键作为字符串值返回Python

时间:2016-07-01 07:01:59

标签: python dictionary key

我是初学程序员,我有一个问题。我需要在字典中将键值作为字符串返回。

choice = skills[(input('which attribute would you like to access: '))]
print('Testing, choice was in word')
user = None
while user != 0:
    print('\nyour current', choice[0] ,' skill is:', choice,)
    print('you also have', XP,'XP points left to distribute')
    print('''\nWould you like to Add or take away points
0. Go back
1. Add
2. Take away''')

我想让程序将键值返回到字典choice[0]。然后在它说'skill is: '之后,选择,是返回该键值的地方。

我希望能够只将键显示为字符串值,以便在程序中轻松访问。

因此,例如,如果键为“X”且值为“x”,我希望程序吐出。

'your current X skill is x' 

到目前为止,打印功能的结束工作正常。

1 个答案:

答案 0 :(得分:0)

假设您有一个词典:d = {'X':'x'}

您可以从字典中检索d['X']

的值

函数keys()将返回字典中的键列表,values()将返回字典中的值列表。如果您不知道密钥并想要检索任何项目,则可以在i返回的列表中使用索引keys()。试试这个:

d = {'X':'x'}
print('\nyour current', d.keys()[0] ,' skill is:', d[d.keys()[0]])

您的计划的预期解决方案可以是:

choice = input('which attribute would you like to access: ')
print('\nyour current', skills[choice] ,' skill is:', choice,)