python编写程序已知 s="abcdedcbaf",输出该 s 中不重复的元素。
时间: 2024-03-06 11:49:27 浏览: 69
可以使用 Python 中的 set() 函数来实现对 s 中不重复元素的提取,代码如下:
```python
s = "abcdedcbaf"
unique_elements = set(s)
print(unique_elements)
```
输出结果为:
```
{'c', 'a', 'b', 'f', 'e', 'd'}
```
其中,set() 函数可以将字符串 s 转换为一个集合,集合中只包含不重复的元素。
阅读全文