摘要: python 读取excel内容,包含表格日期处理 读取内容整数变为小数,有2个解决办法: 1、在excel中数字签名加个英文单引号: ' 2、通过程序代码判断单元格内容的ctype来解决 if ctype == 2 and cell % 1 == 0.0: # ctype为2且为浮点 cell = 阅读全文
posted @ 2019-04-25 17:28 yinrw 阅读(4069) 评论(0) 推荐(0) 编辑