python分别输入两个字符串s1和s2,请问s1中包含多少个s2,如果没有则输出0
时间: 2024-05-11 16:18:02 浏览: 181
可以使用Python字符串中的count()方法来实现。count()方法可以计算一个字符串在另一个字符串中出现的次数。
具体实现代码如下:
```
s1 = input("请输入字符串s1:")
s2 = input("请输入字符串s2:")
count = s1.count(s2)
print("s1中包含{}个s2".format(count))
```
这段代码中,首先通过input()函数分别获取用户输入的两个字符串s1和s2。然后,使用count()方法统计s2在s1中出现的次数,并将结果存储在count变量中。最后,使用字符串格式化方法输出结果。
需要注意的是,如果s2在s1中没有出现过,count()方法会返回0。
相关问题
分别输入两个字符串s1和s2,请问s1中包含多少个s2,如果没有则输出0
以下是Python语言的实现代码:
```python
def count_substring(s1, s2):
count = 0
n = len(s2)
for i in range(len(s1)-n+1):
if s1[i:i+n] == s2:
count += 1
return count
s1 = input("请输入字符串s1: ")
s2 = input("请输入字符串s2: ")
count = count_substring(s1, s2)
print("s1中包含%s个%s" % (count, s2))
```
输入示例:
```
请输入字符串s1: hello world, world is beautiful!
请输入字符串s2: world
```
输出示例:
```
s1中包含2个world
```
python输入两个字符串s1和s2,从字符串s1中删除字符串s2中出现的字符,并输出删除后的字符串s1
可以使用Python中字符串的replace()方法来实现。具体实现如下:
s1 = "hello world"
s2 = "ll" # 需要删除的子串
new_s1 = s1.replace(s2, "") # 删除s1中的s2子串
print(new_s1) # 输出:"heo word"
阅读全文