题解 | #字符串归一化#python
字符串归一化
https://www.nowcoder.com/practice/6d5e036defdf408681376a4a9d4930ff
st=input() dic={} # 用于记录每个字符的个数 for s in st: if s not in dic: dic[s]=1 else: dic[s]+=1 res='' l=sorted(dic) # sorted()函数传入字典,默认使用键排序生成列表 for v in l: res+=(v+str(dic[v])) print(res)