Python运算子和If条件

时间:2019-02-11 12:37:07

标签: python string if-statement operator-keyword

我的代码:

answer = str(raw_input("Is the information correct? Enter Y for yes or N for no"))
if answer == "y" or answer == "Y":
  print("this will do the calculation")
else:
  exit()

通过OR运算符使用这种方式是否正确?

1 个答案:

答案 0 :(得分:1)

是的,这是对OR运算符的正确使用,您可以避免使用OR来使输入变为大写或小写,但据我所知,您对有效的OR语法更感兴趣。