用python返回字符串的并集
时间: 2023-10-17 17:05:31 浏览: 67
python 将字符串中的数字相加求和的实现
要返回两个字符串的并集,可以使用集合(set)的方法,示例如下:
```python
str1 = "hello world"
str2 = "world is beautiful"
# 将字符串转换为集合
set1 = set(str1.split())
set2 = set(str2.split())
# 返回两个集合的并集
result = set1.union(set2)
# 将并集转换为字符串
result_str = " ".join(result)
print(result_str) # 输出:'is beautiful hello world'
```
在这个例子中,我们首先将两个字符串分别转换为集合(set1和set2),然后使用集合的union方法计算并集。最后将并集转换为字符串并输出。
阅读全文