python实现读Excel写入.txt的方法
因为今天要用到把Excel中的数据写入到.txt文件中,所以简单的写了个代码:
import numpy as np import xlrd #打开excel文件 data= xlrd.open_workbook('./sudata/ng.xls')#打开Excel文件读取数据 sh=data.sheet_by_name("Sheet1")##通过工作簿名称获取 print sh.nrows#行数 5820 print sh.ncols#列数 2 n=0 i=0 file=open("ng.txt","w") for n in range(sh.nrows): for i in range(sh.ncols): text=sh.cell_value(n,i).encode('utf-8') file.write(text) file.write('\n')
相关推荐
diyanpython 2020-11-05
三石 2020-10-29
wndong 2020-08-21
jczwilliam 2020-08-16
chongxiaocheng 2020-08-16
zlfing 2020-08-16
wordmhg 2020-08-16
NS 2020-08-03
Leewoxinyiran 2020-07-19
chenjia00 2020-07-04
柠檬班 2020-07-04
xiaoxiaoCNDS 2020-06-26
xiaoxiaoniaoer 2020-06-22
ericxieforever 2020-06-21
zxznsjdsj 2020-06-16
fanfangood 2020-06-14
up0 2020-06-13