gpt4 book ai didi

python - 如何在 python 中搜索字符串中出现的任何子字符串(包括部分匹配)?

转载 作者:行者123 更新时间:2023-12-01 01:05:38 33 4
gpt4 key购买 nike

我正在尝试编写一个程序,它将搜索一系列字符串,如果找到子字符串的任何部分,则返回 true。

例如,假设我感兴趣的子字符串是:

GATCGATC

程序应返回 True:

GGTGGATCGATC

并且还应该返回 true(因为它以 GATC 结尾):

GGTGTTTTGATC

到目前为止我已经:

def matchpat(str1, str2):
'''Find a pattern in a string'''
if str1 in str2:
return True
else:
return False

此函数有效,但仅当整个模式存在时,它才会在部分匹配时返回 False。

最佳答案

嗨,我编写了这段有效的代码。您可以使用变量将其更改为更具动态性

text = 'GGTGGATCGATC'
lookingFor = 'GATCGATC'

def method():
print('in check')
if lookingFor in text:
return true
else:
return false

def main():
method()
if __name__ == "__main__":

如果您想让方法接受输入,您可以在方法定义中传递它:

def method(text, lookingFor)

关于python - 如何在 python 中搜索字符串中出现的任何子字符串(包括部分匹配)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55395670/

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