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)发布于 2013-04-18 02:53:06
您发出的问题是变量名为wears lenses
它应该是wears_lenses或其他什么。不能在变量名中使用空格。
另外,变量名也有一个问题:wears glasses应该为wears_lenses
https://stackoverflow.com/questions/16067844
复制相似问题