#将相同值输出,取一个值

#将相同值输出,取一个值
s = set('hello')
print(s)

s = set(['alex','alex','sb'])
print(s)
原文地址:https://www.cnblogs.com/huangjinshan/p/6231302.html