Python操作Excel学习笔记(4):基础代码之读取Excel文件中的数( 九 )




2

 

同样,可以打印多个列的值:

for y in range(1,5,1):

print(sheet.cell(row=y,column=1).value,sheet.cell(row=y,column=2).value,sheet.cell(row=y,column=3).value,sheet.cell(row=y,column=3).value,sheet.cell(row=y,column=4).value,sheet.cell(row=y,column=5).value, sheet.cell(row=y,column=6).value, sheet.cell(row=y,column=7).value)

 

在上面的代码中,我们使用了

for

循环来遍历行,使用了

range

函数生成列表序列。

 

欢迎分享本文,转载请注明出处。