题解 | #字符统计#

字符统计

http://www.nowcoder.com/practice/c1f9561de1e240099bdb904765da9ad0

while True:
    try:
        s = input()
        result = {}
        for i in s:
            if i not in result:
                result[i] = s.count(i)
        output_list = sorted(result.items(), key = lambda d :(-d[1],d[0]))#这个排序的写法需要背诵,背诵起来。。。
#Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。
        #d = {'one': 1, 'two': 2, 'three': 3}
#>>> d.items()
#dict_items([('one', 1), ('two', 2), ('three', 3)])
        #注意 sorted返回的结果会把字典变成元组了,需要取通过i[0]取其键值。
        for i in output_list:
            print(i[0], end = '')
        print()
    except:
        break
全部评论

相关推荐

10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务