题解 | #创建集合#
创建集合
https://www.nowcoder.com/practice/398ceccfafeb4de88640e76128634902
a = map(str,input().split()) lst = set(a) print(sorted(lst))
创建集合
https://www.nowcoder.com/practice/398ceccfafeb4de88640e76128634902
a = map(str,input().split()) lst = set(a) print(sorted(lst))
相关推荐