python读取excel表格内不同类型的数据不同类型数据对应值:
#coding=utf-8
python怎么读取excel某一列import os
import xlrd
from datetime import datetime,date
newparh = os.chdir(r"D:\Pycharm\Test\test_case\excel")
filename = u'测试数据.xlsx'
file = os.path.wd(),filename)
xl = xlrd.open_workbook(file) #打开⽂件
table1 = xl.sheet_by_name(u"⽬录")
def read_excel(table,row,col):
name = ll_value(row,col)
type = ll_type(row,col)
if type == 0:    #空0
name = "''"
elif type == 1:  #字符串1
name = name
elif type == 2 and name%1==0:  #数字2
name = int(name)
elif type == 3:  #⽇期3
date_value = xlrd.xldate_as_tuple(name,0)
name = datetime(*date_value).strftime('%Y/%m/%d %H:%M:%S')
elif type == 4:  #布尔4
name = True if name == 1 else False
elif type == 5:  #error 5
name = error
return name
print(read_excel(table1,0,7))

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。