统计字符出现的次数并要次数和字符顺序对输出字符串排序
统计字符串次数的方法有两种:使用collections库/遍历计数
import collections
nums = input()
nums = collections.Counter(nums)
nums_ = {
统计字符出现的次数并要次数和字符顺序对输出字符串排序
统计字符串次数的方法有两种:使用collections库/遍历计数
import collections
nums = input()
nums = collections.Counter(nums)
nums_ = {