python学习一点 快乐一点(3)找出符合要求的字符串
找出符合要求的字符串要求:1s262144k给定两个字符串,从字符串2中找出字符串1的所有字符,并去重后按ASCII排序#!/usr/bin/python# -*- coding: utf-8 -*-s1,s2 = input().split() ##将输入分割成两个字符串res = set([]) ##set去重for i in s1:if i in s2:res.add(i)##res类型为集
·
找出符合要求的字符串
要求:1s 262144k
给定两个字符串,从字符串2中找出字符串1的所有字符,并去重后按ASCII排序
#!/usr/bin/python
# -*- coding: utf-8 -*-
s1,s2 = input().split() ##将输入分割成两个字符串
res = set([]) ##set去重
for i in s1:
if i in s2:
res.add(i) ##res类型为集合
print("".join((lambda x:(x.sort(),x)[1])(list(res))))
## x为形参,(x.sort(),x)为返回值,或者写成:
## print(" ".join(sorted(list(res))))
更多推荐
已为社区贡献2条内容
所有评论(0)