python怎么读取excel文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python怎么读取excel文件相关的知识,希望对你有一定的参考价值。

xlrd模块

使用步骤及方法:
打开文件:
import xlrd
excel=xlrd.open_workbook('E:/test.xlsx')
获取sheet:
table = excel.sheets()[0] #通过索引获取
table = excel.sheet_by_index(0) #通过索引获取
table = excel.sheet_by_name('Sheet1') #通过表名获取
备注:以下方法的操作都要在sheet基础上使用
获取行数和列数:
rows=table.nrows #获取行数
cols=table.ncols #获取列数
获取单元格值:
Data=table.cell(row,col).value #获取表格内容,是从第一行第一列是从0开始的,注意不要丢掉 .value
获取整行或整列内容
Row_values=table.row_values(i) #获取整行内容
Col_values=table.col_values(i) #获取整列内容
参考技术A 用openpyxl就可以了追答

from openpyxl.cell import Cell

for row in new_ws.iter_rows():
data = list(row)
c = Cell(new_ws)
c.value = 'hello'
data.append(c)

other_ws.append(data)

参考技术B 用xlrd

vscode怎么导入读取csv文件数据

参考技术A 1、首先找到目标数据库,右击任务,进入导入数据。
2、其次进入向导提示,常规页面。
3、最后在数据源设置,在高级栏中可以设置,字段属性,预览栏中可以预览数据。

以上是关于python怎么读取excel文件的主要内容,如果未能解决你的问题,请参考以下文章

python怎么读取excel文件

Python 读取 excel 文件

Excel用Python读取清洗后怎么写入数据

怎么用python读取txt文件里指定行的内容,并导入excel

C#读取大数据量Excel,60W行数据,该怎么处理

python的pandas读取excel时显示gbk怎么办