TA的每日心情 | 擦汗 2020-7-9 09:27 |
---|
签到天数: 516 天 连续签到: 1 天 [LV.9]测试副司令
|
#!/usr/bin/env python
#_*_coding:utf-8_*_
'''
for i in range(1,10):
for j in range(1,i+1):
print('%s*%s=%s'%(j,i,j*i),end=' ')
print('\t')
'''
import xlrd,xlwt
#读取excel数据
def a():
book=xlrd.open_workbook("D:\\wangli.xlsx")#打开excel
sheet=book.sheet_by_index(0)#获取当前页签
nrows=sheet.nrows#总行数
ncols=sheet.ncols#总列数
row_data=sheet.row_values(0)#读取第一行数据,列表形式展现
col_data=sheet.col_values(1)#读取第二列数据,列表形式展现
cell_data=sheet.cell_value(1,1)#读取单元格数据
cell_data1=sheet.cell(0,0)#读取单元格数据和类型
#读取整个excel数据
for i in range(0,nrows):
for j in range(0,ncols):
cell_data2=sheet.cell_value(i,j)
print(cell_data2)
#写入excel数据
book=xlwt.Workbook(encoding='utf-8')
sheet=book.add_sheet('wangli1',cell_overwrite_ok=True)#可重新写入
sheet.write(0,0,'test1')#写入数据
sheet.write(0,1,'哈哈')
sheet.write(0,2,'521')
book.save('D:\\wangli1.xls')#保存excel |
|