如何找出两个字符串中重复的字符串
时间: 2023-03-21 07:01:39 浏览: 284
查找重复字符串代码
要找出两个字符串中重复的字符串,可以按以下步骤操作:
1. 创建两个字符串的集合,即将每个字符串拆分成单个字符的集合。
2. 使用交集操作符(&)查找两个集合中的重复元素。
3. 将交集转换回字符串,即可得到两个字符串中重复的字符串。
以下是示例代码:
```python
str1 = "hello"
str2 = "world"
set1 = set(str1)
set2 = set(str2)
intersection = set1 & set2
result = "".join(intersection)
print(result)
```
输出结果为 "lo",即为两个字符串中重复的字符串。
阅读全文