码迷,mamicode.com
首页 > 编程语言 > 详细

python 将一列数据转化成多行数据

时间:2017-11-02 11:25:43      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:技术分享   shape   sys   array   numpy   book   bsp   argv   ble   

import xlrd
import xlwt
import numpy as np
import sys

def write():
    data = xlrd.open_workbook(‘data.xls‘)
    file = xlwt.Workbook()
    for si,sheet in enumerate(data.sheets()):
        values = sheet.col_values(0)
        if values:
            print(values)
            table = file.add_sheet(‘sheet‘+str(si+1))
            d = ((ri,ci,c) for ri,r in enumerate(np.array(values).reshape(len(values)//7,7)) for ci,c in enumerate(r))
            for msg in d:
                m = list(msg)
                table.write(m[0],m[1],m[2])
    file.save(‘newdata.xls‘)
if __name__ == ‘__main__‘:
    # write(sys.argv[1])
    write()

 

 

转换如图:

技术分享数据 转换成技术分享

 

 

 

 源码链接:http://pan.baidu.com/s/1i4SaWLn 密码:ywva

python 将一列数据转化成多行数据

标签:技术分享   shape   sys   array   numpy   book   bsp   argv   ble   

原文地址:http://www.cnblogs.com/fh-fendou/p/7770649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!