如何在搜索时允许两个结果

时间:2016-07-31 09:30:41

标签: python python-3.x

我正在制作一本词典/翻译,但我想让用户写'hello'和'Hello'并仍然收到'Ronne'的结果。

function UpperCaseAfterDash($wyraz)
  {
     $rozbij = explode('-',$wyraz);
     echo $rozbij[0].'-'.
     ucfirst($rozbij[1]);
  }

UpperCaseAfterDash("input-text");

2 个答案:

答案 0 :(得分:1)

要忽略这种情况,只需将搜索转换为小写

即可
search = search.lower()
if search == "hello":
    print ("Ronne")

答案 1 :(得分:0)

您可以将输入转换为小写,然后与“hello”进行比较,如下所示:

search = input("Enter the word you would like to translate: ").lower()

if search == "hello":
    print("Ronne")