摘要: 1 #!/usr/bin/python3 2 # -*-coding:utf-8-*- 3 #python读取Excel中单元格的内容返回的有5种类型ctype : 0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error 4 #显示单元格属性方法sheet.cell(row,col).ctype 5 import xlrd 6 ... 阅读全文