2

我是一个非常新手的学习者,我正在学习 Python 课程。这个问题与课堂无关,只是与我正在上课时正在做的一个项目(我正在做一个简单的游戏,使用我在课堂上学到的概念来更新、扩展和清理我的代码。)

我这个时候正在学习元组、列表和字典,并认为简单的元组可以清除很多 IF 语句并简化代码。但是,我无法让它完全按照我希望的方式工作。

基本上我的所有类都有一组元组(注意,这些是训练分类,而不是 Python 类)。它们有不同的数字,然后我有一个包含所有类名称列表的元组。在代码中的某个时刻,我要求用户输入来确定角色的类别。我希望能够使用该输入,以便可以从元组中提取(是正确的术语拼接吗?)值,例如我想将元组第三位置的任何值添加到另一个值。现在我无法让用户输入与同名的元组相关联。有没有办法做到这一点?


# Class list
Apprentice = (6, 0, 0, 0, 0, 0, 0)
Warrior = (12, 2, 0, 2, 0, 0, 0)
Paladin = (14, 2, 0, 2, 1, 0, 1)
Barbarian = (12, 6, 0, 3, -1, -1, -1)
Blademaster = (10, 4, 4, 0, 0, 0, 0)
Assassin = (8, 0, 8, -2, 0, 0, 0)
Rogue = (8, 0, 4, 0, 0, 0, 0)
Monk = (10, 2, 2, 2, 2, 2, -4)
Bard = (8, 0, 0, 0, 0, 0, 4)
Mage = (6, 0, 0, 0, 2, 2, 0)
Priest = (6, 0, 0, 0, 1, 2, 1)
Wizard = (4, -2, -2, -2, 6, 8, 0)
Scholar = (6, -1, -1, 0, 4, 4, 0)
Necromancer = (6, 0, 0, 0, 6, 6, -5)
classList = ('Apprentice', 'Warrior', 'Priest', 'Mage', 'Wizard', 'Rogue', 'Bard', 'Paladin', 'Scholar', 'Necromancer', 'Barbarian', 'Blademaster', 'Assassin', 'Monk')

validClass = False
while validClass == False:
    charClass = raw_input('What type of training have you had (Class)? ')
    if charClass in classList:
        print ''
        validClass = True
    else:
        print 'That is not a valid class.'
4

5 回答 5

2

你应该使用 dict

my_class = dict(
Apprentice=(6, 0, 0, 0, 0, 0, 0),
Warrior=(12, 2, 0, 2, 0, 0, 0),
Paladin=(14, 2, 0, 2, 1, 0, 1),
Barbarian=(12, 6, 0, 3, -1, -1, -1),
Blademaster=(10, 4, 4, 0, 0, 0, 0),
Assassin=(8, 0, 8, -2, 0, 0, 0),
Rogue=(8, 0, 4, 0, 0, 0, 0),
Monk=(10, 2, 2, 2, 2, 2, -4),
Bard=(8, 0, 0, 0, 0, 0, 4),
Mage=(6, 0, 0, 0, 2, 2, 0),
Priest=(6, 0, 0, 0, 1, 2, 1),
Wizard=(4, -2, -2, -2, 6, 8, 0),
Scholar=(6, -1, -1, 0, 4, 4, 0),
Necromancer=(6, 0, 0, 0, 6, 6, -5),
)
while 1:
    try:
        val = my_class[raw_input('What type of training have you had (Class)? ')]
        break
    except KeyError:
        print 'That is not a valid class.'
于 2013-11-07T16:31:22.517 回答
2

您可以通过访问全局变量列表来做到这一点,但我建议要这样做。一个更好的方法是创建一个类字典,如下所示:

classes = {'Apprentice':Apprentice,'Warrior':Warrior, ...}

然后做类似的事情

selected_class = None

while True:
    charClass = raw_input('What type of training have you had (Class)? ')
    if charClass in classes:
        selected_class = classes[charClass]
        break
    else:
        print 'That is not a valid class.'
于 2013-11-07T16:33:20.037 回答
1

最好使用字典,但如果它是作业并且不允许使用字典,则可以执行以下操作:

validClass = False
while validClass == False:
    charClass = raw_input('What type of training have you had (Class)? ')
    if charClass in classList:
        print eval(charClass)
        validClass = True
    else:
        print 'That is not a valid class.'

eval函数允许您在其内部运行 python 代码。同样,最好使用字典。

于 2013-11-07T16:33:52.850 回答
1

使用字典要好得多,但如果不允许这样做,则可以使用该vars()函数,该函数返回所有全局值的字典。

while validClass == False:
    try:
        vals = vars()[raw_input('What type of training have you had (Class)? ')]
    except KeyError:
        print 'That is not a valid class.'
于 2013-11-07T16:37:42.703 回答
1

尝试将每个变量与字符名称的字符串一起存储在字典中,而不是创建单独的元组。现在不可能将您的 ClassList 与统计信息联系起来,因为每个类的变量名无法与每个类的字符串名称进行比较(您必须将一个字符串与另一个字符串进行比较)。

如果您以前没有使用过字典,请尝试学习。我认为这在这种情况下真的很有帮助!

http://www.tutorialspoint.com/python/python_dictionary.htm

于 2013-11-07T16:37:50.953 回答