第一题: 把字符串排序后紧凑地输出: 输入: 5 5 1 1 1 输出: 1 3 5 2 意思: 1有3个,5有2个 num=list(map(int, input().split(" ")) set1=set(num) new={} for i in set1: new[i]=num.count(i) dict1=sorted(new.items(),key=lambda d:d[0]) d2=[str(i) for x in dict1 for i in x] print(' '.j...