在一行上输入两个字符串s和英文字符串t,要求在s中查找t。其中,字符串s,t均不包含空格,且长度均小于80。 输入格用python对于每组测试数据,若在s中找到t,则输出“Found!”,否则输出“not Found!”。引号不必输出。
时间: 2024-03-22 13:15:56 浏览: 70
SQL语句字符串分割
3星 · 编辑精心推荐
以下是Python的代码实现:
```python
s, t = input().split()
if t in s:
print("Found!")
else:
print("not Found!")
```
首先使用 `input()` 函数获取输入的两个字符串 `s` 和 `t`,并使用 `split()` 函数将它们分开。然后,使用 `in` 关键字在字符串 `s` 中查找子字符串 `t`,如果存在,则输出 "Found!",否则输出 "not Found!"。
阅读全文