对于函数ask,以下调用错误的是( )项?
Def ask(prompt = "Do you like Python? ", hint = "yes or no"):
while True:
answer = input(prompt)
if answer.lower() in ('y', 'yes'):
print ("Thank you")
return True
if answer.lower() in ('n', 'no'):
print("Why not ")
return False
else:
print(hint)
A.answer.lower() 是调用了string自带函数lower(),将输入转换为小写字母。 B.调用函数ask(),在交互页面输入N,则会继续打印yes or no提示你继续输入。 C.调用函数ask(),在交互页面输入x,则会打印yes or no,如果继续输入y,则会打印Thank you并退出ask()函数的执行同时返回值True。 D.函数调用ask("Do you like Python? ")与ask()效果一致正确答案B