0
def who_are_you(tall,ginger,wears lenses):
    if tall and ginger and wears glasses:
        return "student 1"
    if tall and not ginger and not wears lenses:
        return " student 2"
    if ginger and wears lenses and not tall:
        return "student 3"
    if wears lenses and not tall and not ginger:
        return "student 4"
    if tall and wears lenses and not ginger:
        return "student 5"
    else:
        return "bossman"    

#This is just for you to see what happens when the function is called
print who_are_you(True, True, True)
4

1 回答 1

4

你的问题是变量名wears lenses

应该是wears_lenses或者别的。您不能在变量名中使用空格。

此外,您对变量名称有疑问:wears glasses应该是wears_lenses

于 2013-04-17T18:53:05.720 回答