如何利用代码判断一个短字符串是否在一个长字符串中
时间: 2024-05-12 17:18:32 浏览: 99
判断一个字符串是不是出现在另一个字符串中
4星 · 用户满意度95%
你好!对于你的问题,我可以给出以下 Python 代码:
```
short_str = "hello"
long_str = "hello world"
if short_str in long_str:
print("Short string is in long string.")
else:
print("Short string is not in long string.")
```
如果短字符串 `short_str` 存在于长字符串 `long_str` 中,那么程序会输出 "Short string is in long string.",否则输出 "Short string is not in long string."。
希望这能解决你的问题,如果还有其他问题,请随时询问!
阅读全文