资源简介

python读写txt、csv、json文件大全的工具方法
写txt文件,写一行就换行,追加方式写txt文件,写一行就换行,追加方式
写CSV文件,写一行就换行,追加方式
写json文件,写一行就换行,追加方式
写json文件,一个数据一个文件
遍历文件夹中的所有文件

资源截图

代码片段和文件信息

# -*- coding: utf-8   二层循环版本、比较慢
import json
import os
import csv
import threading

import pandas as pd

#   写CSV文件,写一行就换行,追加方式
def writeCSV(relate_record src):
    with open(src ‘a‘ newline=‘\n‘encoding=‘utf-8‘) as csvfile:
        writer = csv.writer(csvfile)
        for row in relate_record:
            writer.writerow(row)


#   写CSV文件,写一行就换行,追加方式
def writeOneCSV(relate_record src):
    with open(src ‘a‘ newline=‘\n‘) as csvfile:
        writer = csv.writer(csvfile)
        writer.writerow(relate_record)


#   写txt文件,写一行就换行,追加方式
def writeTXT(relate_record src):
    with open(src ‘a‘ newline=‘\n‘ encoding=‘utf-8‘) as file:
        for i in range(len(relate_record)):
            jointsframe = relate_record[i]  # 每行
            for cell in range(len(

评论

共有 条评论