Python读写Excel表格的方法

时间:2021-09-30 03:12:12

本文实例为大家分享了Python读写Excel表格的具体代码,供大家参考,具体内容如下

python读取Excel表格:

  1. import xlrd
  2.  
  3. def read_excel():
  4. # 打开文件
  5. wb = xlrd.open_workbook(r'test.xls')
  6. # 获取所有sheet的名字
  7. print(wb.sheet_names())
  8. # 获取第二个sheet的表名
  9. sheet2 = wb.sheet_names()[1]
  10. print("sheet2 = {}".format(sheet2))
  11. # sheet1索引从0开始,得到sheet1表的句柄
  12. sheet1 = wb.sheet_by_index(0)
  13. rowNum = sheet1.nrows
  14. colNum = sheet1.ncols
  15. print("rowNum = {}, colNum = {}".format(rowNum, colNum))
  16. # 获取某一个位置的数据
  17. c1_0 = sheet1.cell(1, 0).value
  18. print("c1_0 = {}".format(c1_0))
  19. # 1 ctype : 0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error
  20. print(sheet1.cell(1, 2).ctype)
  21. # 获取整行和整列的数据
  22. # 第二行数据
  23. row2 = sheet1.row_values(1)
  24. print("row2 = {}".format(row2))
  25. # 第二列数据
  26. cols2 = sheet1.col_values(2)
  27. print("cols2 = {}".format(cols2))
  28. # python读取excel中单元格内容为日期的方式
  29. # 返回类型有5种
  30. print("for循环:")
  31. for i in range(rowNum):
  32. # if sheet1.cell(i, 2).ctype == 1:
  33. # d = xlrd.xldate_as_tuple(sheet1.cell_value(i, 2), wb.datemode)
  34. # print(date(*d[:3]), end='')
  35. print(sheet1.cell(i, 2))
  36.  
  37. # 输出如下:
  38. # ['我的第一个表', '第二个', '呵呵第三个']
  39. # sheet2 = 第二个
  40. # rowNum = 8, colNum = 3
  41. # c1_0 = w
  42. # 2
  43. # row2 = ['w', 's', 10.0]
  44. # cols2 = ['z', 10.0, 666.0, '2021年2月25日 02:06:25', 44252.0, 'x', 1, '']
  45. # for循环:
  46. # text:'z'
  47. # number:10.0
  48. # number:666.0
  49. # text:'2021年2月25日 02:06:25'
  50. # xldate:44252.0
  51. # text:'x'
  52. # bool:1
  53. # empty:''

Python读写Excel表格的方法

python写入Excel表格:

  1. import xlwt
  2.  
  3. # 写入数据
  4. def write_excel():
  5. f = xlwt.Workbook()
  6. # 创建表sheet1
  7. sheet1 = f.add_sheet(u'sheet1', cell_overwrite_ok=True)
  8. # 如果是写入中文,则要用u'汉字'的形式。比如 sheet1.write(0,0, u'汉字')
  9. row0 = [u'业务', u'状态', u'北京', u'上海', u'广州', u'深圳', u'状态小计', u'合计']
  10. column0 = [u'机票', u'船票', u'火车票', u'汽车票', u'其他']
  11. status = [u'预定', u'出票', u'退票', u'业务小计']
  12. for i in range(0, len(row0)):
  13. sheet1.write(0, i, row0[i], set_style("Time New Roman", 220, True))
  14.  
  15. # 合并单元格:
  16. # sheet1.write_merge(x, x + m, y, y + n, string, style)
  17. # x表示行,y表示列,m表示跨行个数,n表示跨列个数,string表示要写入的单元格内容,style表示单元格样式。
  18. i, j = 1, 0
  19. while i < 4 * len(column0): # 控制循环:每次加4
  20. # 第一列
  21. sheet1.write_merge(i, i + 3, 0, 0, column0[j], set_style('Arial', 220, True))
  22. # 最后一列
  23. sheet1.write_merge(i, i + 3, 7, 7)
  24. i += 4
  25. j += 1
  26. sheet1.write_merge(21, 21, 0, 1, u'合计', set_style("Time New Roman", 220, True))
  27.  
  28. i = 0
  29. while i < 4 * len(column0): # 控制外层循环:每次加4
  30. for j in range(0, len(status)): # 控制内层循环:设置每一行内容
  31. sheet1.write(i + j + 1, 1, status[j])
  32. i += 4
  33.  
  34. # 创建sheet2
  35. sheet2 = f.add_sheet(u'sheet2',cell_overwrite_ok=True)
  36. row0 = [u'姓名', u'年龄', u'出生日期', u'爱好', u'关系']
  37. column0 = [u'UZI', u'Faker', u'大司马', u'PDD', u'冯提莫']
  38.  
  39. # 生成第一行
  40. for i in range(0, len(row0)):
  41. sheet2.write(0, i, row0[i], set_style('Times New Roman', 220, True))
  42.  
  43. # 生成第一列
  44. for i in range(0, len(column0)):
  45. sheet2.write(i + 1, 0, column0[i], set_style('Times New Roman', 220, True))
  46. f.save('data.xls')

执行上面这个写入excel表格的函数后,会生成data.xls文件。

写入表格1:

Python读写Excel表格的方法

写入表格2:

Python读写Excel表格的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

原文链接:https://blog.csdn.net/kaida1234/article/details/114178347