输出不重复字符(python)
作者:互联网
问题:
输入一个字符串,把最左边的10个不重复的字符(大小写算不同的字符)挑选出来。如不重复的字符不到10个,则按实际数目输出。
输入格式:
输入一个字符串s
输出格式:
输出一个字符串,包含字符串s最左边10个不重复的字符。不到10个按10个输出。
输入样例:
Hello World , hello python
输出样例:
Helo Wrd,h
python代码如下:
def unique(s):
set1=set([])
out=''
for i in range(len(s)):
c=s[i]
if c not in set1:
out=out+c
set1.add(c)
return out[0:10]
strin='Hello World , hello python'
ret=unique(strin)
print(ret)
感谢观看!
标签:字符,10,python,输出,set1,out 来源: https://blog.csdn.net/zixiangyanhua/article/details/121642467