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