用 python 代码填写框,使程序行为与注释匹配。您不得对代码进行任何其他更改或在括号“()”之外添加代码。
def bypass_line(age, has_acces_card): ''' (int, bool) -> bool Return True if and only if the person's age is greater than 50 or they have a access card as indicated by has_access_card. ''' return ( )
这是我正在做的练习题。我进退两难,我知道如何编写代码......
这是:
def bypass_line(age, has_vip):
if age >70 or has_vip =="yes":
return True
return False
但是我如何在()中写一行代码,以便我回答了这个问题?