import openpyxl
def readExcel(path_name):
myxl = openpyxl.load_workbook(path_name)#加载一个excel文件
myexcel = myxl.active#获取活跃的excel
col = myexcel.max_column#获取最大列数
#print(col)
row = myexcel.max_row#获取最大行数
#print(row)
for i in range(1,row+1):
print('')
for j in range (1,col+1):
mycell = myexcel.cell(i,j)#获取表格小空间
print(str(mycell.value)+' ',end='')
相关文章
- 10-19NPOI读取Excel报错:无法访问已关闭的流或文件
- 10-19我把excel文件读取为df,用SQL查询、分析,它不香吗?
- 10-19Apache POI 用eventmodel 读取大文件Excel (3) Xlsx格式内容补充
- 10-19用openpyxl读取excel文件(已封装)
- 10-19openpyxl读取excel文件的方法
- 10-19用python的pandas读取excel文件中的数据
- 10-19excel to datatable (c#用NPOI将excel文件内容读取到datatable数据表中)
- 10-19利用Python读取和修改Excel文件(包括xls文件和xlsx文件)——基于xlrd、xlwt和openpyxl模块
- 10-19人生苦短_我用Python_openpyxl库读取Excel文件数据_008
- 10-19C#_Excel数据读取与写入_自定义解析封装类_支持设置标题行位置&使用excel表达式收集数据&单元格映射&标题映射&模板文件的参数数据替换