码迷,mamicode.com
首页 > 编程语言 > 详细

python 读取 excel

时间:2019-11-18 09:15:00      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:pytho   xlrd   val   port   adf   span   open   odi   打开   

1.读取文件
2.读取sheetname
3.读取行和列
# -*- coding:utf8 -*-
import xlrd
from datetime import date, datetime
# 读取文件
# 打开文件  xlrd.opem_workbook(‘file.path.name‘)
readfile = xlrd.open_workbook(r"D:\file\1.xlsx")
# print(readfile.sheet_names())
# 读取 sheetname

sheet2_name = readfile.sheet_names()[1]
# print(sheet2_name)

sheet = readfile.sheet_by_name(第二个)
#读取整行和整列的内容
row_datas = sheet.row_values(1,2) #行在前 ,列在后
print(row_datas)
#col_datas = sheet.col_values(2,1)  #列在前 行在后

 

 

# -*- coding:utf8 -*-
import xlrd
from datetime import date, datetime

# 读取文件

# 打开文件 xlrd.opem_workbook(‘file.path.name‘)
readfile = xlrd.open_workbook(r"D:\file\1.xlsx")
# print(readfile.sheet_names())

# 读取 sheetname

sheet2_name = readfile.sheet_names()[1]
# print(sheet2_name)
#

sheet = readfile.sheet_by_name(第二个)
#读取整行和整列的内容
row_datas = sheet.row_values(1,2) #行在前 ,列在后
print(row_datas)
#col_datas = sheet.col_values(2,1) #列在前 行在后

 

 

python 读取 excel

标签:pytho   xlrd   val   port   adf   span   open   odi   打开   

原文地址:https://www.cnblogs.com/try-chi/p/11879451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!