本文主要是介绍python3读取excel内容(1),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通过python读取excel中sheet里边的内容
import xlrdmyFile = xlrd.open_workbook('1.xlsx') #打开一个excle文件
table = myFile.sheets()[0] #打开第一个sheet
nrows = table.nrows #读取该sheet的行数
for i in range(nrows): #遍历每一行if i == 0: #跳过第一行(一般都是标题)continueprint(table.row_values(i)[:3]) #输出每一行前三列的数据
原创:https://blog.csdn.net/u013383042/article/details/105616381
这篇关于python3读取excel内容(1)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!