1 Star 0 Fork 0

fanyangchu/PythonCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
merge.py 1012 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jérôme Krell 提交于 2019-10-10 14:22 . Reformat Code by PyCharm-Community
from __future__ import print_function
import os
# author:zhangshuyx@gmail.com
# !/usr/bin/env python
# -*- coding=utf-8 -*-
# define the result filename
resultfile = 'result.csv'
# the merge func
def merge():
"""merge csv files to one file"""
# indicates use of a global variable.
global resultfile
# use list save the csv files
csvfiles = [f for f in os.listdir('.') if f != resultfile \
and (len(f.split('.')) >= 2) and f.split('.')[1] == 'csv']
# open file to write
with open(resultfile, 'w') as writefile:
for csvfile in csvfiles:
with open(csvfile) as readfile:
print('File {} readed.'.format(csvfile))
# do the read and write
writefile.write(readfile.read() + '\n')
print('\nFile {} wrote.'.format(resultfile))
# the main program
def main():
print("\t\tMerge\n\n")
print("This program merges csv-files to one file\n")
merge()
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanych/pythoncode.git
git@gitee.com:fanych/pythoncode.git
fanych
pythoncode
PythonCode
master

搜索帮助