python如果语句不起作用

时间:2017-08-20 22:03:08

标签: python

我的Python代码不起作用。它输出" HI!"无论输入如何。

export class AlertType {
  static readonly WARNING = { icon: "exclamation-triangle", name: "warning" };
  static readonly SUCCESS = { icon: "check-circle", name: "success" };
}

我尝试使用多个ifs而不是Elifs,但它仍然无法正常工作

1 个答案:

答案 0 :(得分:1)

问题是您需要在if语句的每个部分之后进行检查。

现在检查“Hi”之后读取为true,因为'hi'是一个真值 将你所有的支持改为

if UsrIn == "Hi" or UsrIn =="hi" or UsrIn =="Hello" or UsrIn =="hello" ...

这样它实际上会检查