python如何判断一个字符串在另一个字符串里
时间: 2023-04-01 18:04:49 浏览: 169
python 回文子串,给你一个字符串a和一个正整数n,判断a中是否存在长度为n的回文子串。
5星 · 资源好评率100%
可以使用 in 关键字来判断一个字符串是否在另一个字符串中,例如:
if 'hello' in 'hello world':
print('存在')
else:
print('不存在')
输出结果为存在。
阅读全文
python 回文子串,给你一个字符串a和一个正整数n,判断a中是否存在长度为n的回文子串。