gpt4 book ai didi

python - 检查字符串中的单个单词

转载 作者:行者123 更新时间:2023-11-30 23:35:42 25 4
gpt4 key购买 nike

我正在创建一个程序,我想要它做的是检查用户输入并将其与字典进行比较,看看该单词是否在字典中。

原始代码:

dic = "goodmorning" + "wakeup"
test = raw_input("test: ")
if test == dic:
print "hello"
else:
print "testf"

我已经尝试过这个,但如果我输入 morningmorningwake 它会打印 hello。我也尝试过这个:

dic = ["goodmorning", "wakeup"]
test = raw_input("test: ")
if test == dic:
print "hello"
else:
print "testf"

这也不起作用。

最佳答案

使用in,而不是==

dic = ["goodmorning", "wakeup"]
test = raw_input("test: ")
if test in dic:
print "hello"
else:
print "testf"

关于python - 检查字符串中的单个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17140567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com