我需要让下面的代码忽略任何区分大小写 这是代码:
sentence=str(input("Enter sentence")
words=sentence.split()
uword=input("enter word from sentence")
if uword in words:
print("Word is in sentence")
else:
print("Word isn't in sentence")
例如,如果我输入了句子" Hello World"作为句子变量然后输入"你好"作为uword变量,代码应该识别hello和Hello是相同的并打印("你的单词在句子")
答案 0 :(得分:0)
这有点像一个明显的答案:
将两个字符串转换为小写或大写:
words = sentence.lower().split()
…
if uword.lower() in words: