标签: python-2.7
我正在使用openpyxl模块从.xlsx文件中读取数据。我有一个包含多行的单元格,我想知道是否可以只打印第二行的值。
我正在使用print sheet.cell(row=6, column=2).value,但它会打印所有行。
print sheet.cell(row=6, column=2).value
由于
答案 0 :(得分:0)
这是Python中的标准字符串处理:
text = sheet.cell(row=6, column=2).value lines = text.splitlines() print(lines[1])