我遇到一些输入和if语句的简单问题。我正在使用此页面中的一个功能,我的修改不起作用。这是我的代码:
def correct(prompt):
while True:
try:
value = int(raw_input(prompt))
except ValueError:
print("Enter a number, please!")
continue
if (value != 1) or (value != 2):
print("Enter a value of either 1 or 2, please!")
continue
else:
break
return value
问题似乎出现在if语句中。预期的行为是拒绝不是1或2的输入。但是,它拒绝所有输入。
答案 0 :(得分:1)
问题在于这个测试:
if (value != 1) or (value != 2):
...
显然,True
value
适用于任何1
,包括2
和in
。您可以使用if value not in [1, 2]:
...
:
return
此外,函数中的while
语句永远不会到达,因为它缩进为break
循环的一部分,循环最终由QWidget Window(nullptr);
QPushButton* button = new QPushButton(&Window);
Window.show();
return App.exec();
//When app ends, Window gets deleted
//because it was statically allocated
//And then, Window deletes button because it's its child.
终止。< / p>
答案 1 :(得分:1)
你陷入了常见的陷阱。您希望在or
声明中使用if
而不是1
。所有数字都不是2
或if (value != 1) or (value != 2):
。因此,您希望将代码从if (value != 1) and (value != 2):
更改为ul
答案 2 :(得分:1)
您可以使用:
if value not in [1,2]:
...