美文网首页
python读写excel/csv文件

python读写excel/csv文件

作者: katelin | 来源:发表于2019-12-25 16:43 被阅读0次

    os.path.split():按照路径将文件名和路径分割开

    # PATH指一个文件的全路径作为参数:
    # 如果给出的是一个目录和文件名,则输出路径和文件名
    # 如果给出的是一个目录名,则输出路径和为空文件名
    os.path.split('PATH') 
    

    eg

    file_dir, file_name = os.path.split(file_path)
    
    os.chdir(file_dir)
    # 读取excel文件数据到list
    data = xlrd.open_workbook(file_name)
    table = data.sheets()[0]
    xls_list = []
    for i in range(table.nrows):
         xls_list.append(table.row_values(i))
    
    # 将list写入csv文件
    zip_file_name = 'test.csv'
    with open(zip_file_name, 'w', encoding='utf8') as csv_file:
        writer = csv.writer(csv_file)
        writer.writerows(xls_list)
    

    相关文章

      网友评论

          本文标题:python读写excel/csv文件

          本文链接:https://www.haomeiwen.com/subject/fzbcoctx.html