[[NSArray alloc] initWithObjects:@2, @3, @5, nil]
编写一个名为getContinue的Python函数,向用户显示“你想继续(y / n):”,然后继续提示用户,直到输入大写或小写“y”或“n”为止(小写)'y'或'n'作为函数值。
答案 0 :(得分:0)
我认为您的代码中只有缩进错误,因为当我运行您的代码时,它运行正常。
def getContinue():
response = input('Do you want to continue (y:n): ')
while response not in ('y', 'n', 'Y', 'N'):
response = input('Do you want to continue (y:n): ')
if response in ('y', 'Y'):
return 'y'
else:
return 'n'
如果您仍然无法弄明白,请分享问题的链接