第三章 7-21 输出大写英文字母

s=list(input())
new=[]
for i in s:
    if not i in new:
        if i.isupper():
            new.append(i)
s_=''.join(new)
if len(new)==0:
    print('Not Found')
else:
    print(s_)

发布了80 篇原创文章 · 获赞 6 · 访问量 7620

猜你喜欢

转载自blog.csdn.net/qq_33749437/article/details/104889168