使用openpyxl读取多行单元格

时间:2016-06-30 10:53:12

标签: python-2.7

我正在使用openpyxl模块从.xlsx文件中读取数据。我有一个包含多行的单元格,我想知道是否可以只打印第二行的值。

enter image description here

我正在使用print sheet.cell(row=6, column=2).value,但它会打印所有行。

由于

1 个答案:

答案 0 :(得分:0)

这是Python中的标准字符串处理:

text = sheet.cell(row=6, column=2).value
lines = text.splitlines()
print(lines[1])