1条回答 默认 最新
关注 import re T = int(input('请输入测试组数:')) content = [] for i in range(T): txt = '' n = int(input(f'请输入第{i+1}组的文字行数:')) for j in range(n): a = input(f'请输入第{j+1}行文字:') txt += a content.append(txt) for k in content: word = re.findall(r'\w+',k) word_dict = {i:word.count(i) for i in word} word_list = sorted(list(word_dict.items()), key=lambda x:x[0]) word_list.sort(key=lambda x:x[1], reverse=True) for i,j in word_list: print(i,j)
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 滑块验证码移动速度不一致问题
- ¥15 定制ai直播实时换脸软件
- ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
- ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
- ¥15 麒麟V10桌面版SP1如何配置bonding
- ¥15 Marscode IDE 如何预览新建的 HTML 文件
- ¥15 K8S部署二进制集群过程中calico一直报错
- ¥15 java python或者任何一种编程语言复刻一个网页
- ¥20 如何通过代码传输视频到亚马逊平台
- ¥15 php查询mysql数据库并显示至下拉列表中