摘要: 找出重复数据 import time def task(): # 获取用户输入的txt文件路径 filename = input('请输入txt文件路径:') # 读取txt文件内容 with open(filename, 'r') as file: lines = file.readlines() 阅读全文
posted @ 2023-03-10 10:21 博无止境 阅读(68) 评论(0) 推荐(0) 编辑