03 2017 档案

摘要:import openpyxl,csv,os exl=openpyxl.Workbook() for csvfile in os.listdir("."): if not csvfile.endswith(".csv"): continue print('change csv file ' + csvfile + '...') csvrow=[] ... 阅读全文
posted @ 2017-03-14 17:22 zhgmyron 阅读(518) 评论(0) 推荐(0)
摘要:import openpyxl start_line= int(input("enter start:")) m=int(input("blank:")) exl= openpyxl.load_workbook("produceSales.xlsx",data_only=True) sheet = exl.get_sheet_by_name("Sheet") r=sheet.max_row c=... 阅读全文
posted @ 2017-03-13 16:54 zhgmyron 阅读(1830) 评论(0) 推荐(0)