查找数组中的字符

时间:2016-02-23 01:10:03

标签: python arrays string

在Python中是否存在一种方式,如果一个字母匹配单词中的任何字母,它会继续执行代码

X=str(input("input a word"))
Word="hello"
If x= Word() 
    a=a+1

所以如果有办法说我是否把x作为" h"或者" e"它将执行代码部分

抱歉,我知道这很模糊,而且我对Python非常不好。任何帮助都会很棒

2 个答案:

答案 0 :(得分:0)

使用in

if x in Word:
    a = a + 1

答案 1 :(得分:0)

这在this post

中得到了解答

该方法在"

中被称为"

在你的例子中:

the_string = raw_input('Enter text here')
if 'hello' in the_string:
    a = a + 1