摘要: filelock对文件加锁 需求:给文件加锁,防止多进程同时操作统一文件。 方法:python中的fcntl模块 # -*- coding: utf-8 -*- import os import time from multiprocessing import Pool import fcntl # 阅读全文
posted @ 2020-12-07 23:20 疯狂列表推导式 阅读(280) 评论(0) 推荐(0) 编辑
摘要: OS 模块 路径处理: 基本方法 os.getcwd() # 获取当前工作目录路径 os.path.exist(path) # 判断该path是否存在 os.path.join(path1,path2) # 路径拼接 os.chdir(dir_path) # 切换到path目录下 os.getati 阅读全文
posted @ 2020-12-07 07:51 疯狂列表推导式 阅读(103) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import csv # 写入列表 headers = ["index", "a_name", "b_name"] values = [[1, 'a', 'b'], [2, 'c', 'd'], [3, 'e', 'f']] # 1. values 可 阅读全文
posted @ 2020-12-07 07:18 疯狂列表推导式 阅读(350) 评论(0) 推荐(0) 编辑