第3章-18 输出10个不重复的英文字母
随机输入一个字符串,把最左边的10个不重复的英文字母(不区分大小写)挑选出来。 如没有10个英文字母,显示信息“not found”
输入格式:
在一行中输入字符串
输出格式:
在一行中输出最左边的10个不重复的英文字母或显示信息“not found"
实现代码
s=input() #输入字符串
t=[] #定义一个空列表
for i in s:
if 'a'<=i<='z': # 如果是小写英文字母
if i not in t and i.upper() not in t: # 且前面没出现过(也就是列表t中没有)它和它的大写,就加到列表t中,下面的一样
t+=i
elif 'A'<=i<='Z':
if i not in t and i.lower() not in t:
t+=i
t=''.join(t) # 连接字符串、列表、元组等
if len(t)>=10:
print(t[0:10])
else:
print('not found')