天宫鹤

2024年9月3日

Python正则表达式替换(sub)中如何使用替换函数

摘要: # 中文冒号(比例除外)替换为英文冒号def sub_the_chinese_colon_of_the_question_number(_lines: str) -> str: """ :param _lines:清理后的文本文件内容 功能:查找并替换题号后的中文冒号为英文冒号。 """ # 定义替 阅读全文

posted @ 2024-09-03 11:21 GoGrid 阅读(74) 评论(0) 推荐(0) 编辑

Python字典按键和按值升序排序

摘要: # 字典按键升序排序 lines_dict = dict(sorted(lines_dict.items(), key=lambda it: it[0])) # 字典按值升序排序 lines_dict = dict(sorted(lines_dict.items(), key=lambda it: 阅读全文

posted @ 2024-09-03 08:21 GoGrid 阅读(23) 评论(0) 推荐(0) 编辑

Python字符串列表去重并保持原顺序不变

摘要: # 字符串列表去重并保持原顺序 def deduplicate_preserve_order(lst): """ :param lst:字符串列表 功能:返回字符串列表去重后的列表。 """ return list(OrderedDict.fromkeys(lst)) 阅读全文

posted @ 2024-09-03 08:13 GoGrid 阅读(17) 评论(0) 推荐(0) 编辑

导航