题解 | #字符统计#用sorted套娃

字符统计

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

while True:
    
    try:
        str_input = input()
        new_list = list(set(str_input))
        str_dict = {}
        for c in new_list:
            str_dict[c] = str_input.count(c)
        res_list = sorted(sorted(str_dict.items(), key=lambda x : x[0]), key=lambda y: y[1], reverse=True)
        result = ''
        for i in res_list:
            result += i[0]
        print(result)
        
        
    except:
        break
全部评论
学到了,多谢大佬
点赞 回复 分享
发布于 2022-11-06 17:31 陕西
for i in res_list: result += i[0] 请问大佬,这个 i 是元组吗?为什么 res_list 从 sorted 套娃语句接受的是元组类型的数据?
点赞 回复 分享
发布于 03-05 22:48 广东

相关推荐

11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
15 7 评论
分享
牛客网
牛客企业服务