python找出非重复 和 重复数据

找出重复数据

import time

def task():

    # 获取用户输入的txt文件路径
    filename = input('请输入txt文件路径:')
    # 读取txt文件内容
    with open(filename, 'r') as file:
        lines = file.readlines()
        lines = [line.strip() for line in lines]

    # 获取txt文件行数
    len_txt = len(lines)

    counts = {}
    for element in lines:
        if element in counts:
            counts[element] += 1
        else:
            counts[element] = 1
    duplicates = [element for element in counts if counts[element] > 1]

    with open(filename, 'w') as f:
        f.write(f'一共遍历了 {len_txt} 行数据\n重复数据有{duplicates}')
    print('执行成功')
    time.sleep(5)


if __name__ == "__main__":
    task()

找出非重复数据

def task():
    # 获取用户输入的txt文件路径
    filename = input('请输入txt文件路径:')
    # 读取txt文件内容
    with open(filename, 'r') as file:
        lines = file.readlines()
        lines = [line.strip() for line in lines]

    # 获取txt文件行数
    len_txt = len(lines)

    # 遍历txt文件, 并输出非重复值
    dict_ = {}
    for item in lines:
        if item:
            if item not in dict_:
                dict_[item] = 1
            else:
                dict_[item] += 1
    value = [k for k, v in dict_.items() if v == 1]

    with open(filename, 'w') as f:
        f.write(f'一共遍历了 {len_txt} 行数据\n非重复数据有{value}')
    print('执行成功')


if __name__ == '__main__':
    task()
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

好度

你的鼓励是我最大的创作动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值