xlsxwriter 需要一个缩进块
xlsxwriter expected an indented block
花了一些时间编译后libxlsxwriter as a dylib for osx without success, I made the decision to switch to NSTask using the Python module XlsxWriter。但是另一个问题出来了:缩进!我想通过数组实现迭代,并以编程方式将每个值放在一行和一列中。但是我正在努力处理文档中的这个例子:
import xlsxwriter.
# Create a workbook and add a worksheet.
workbook = xlsxwriter.Workbook('Expenses01.xlsx')
worksheet = workbook.add_worksheet()
# Some data we want to write to the worksheet.
expenses = (
['Rent', 1000],
['Gas', 100],
['Food', 300],
['Gym', 50],
)
# Start from the first cell. Rows and columns are zero indexed.
row = 0
col = 0
# Iterate over the data and write it out row by row.
for item, cost in (expenses):
worksheet.write(row, col, item) #LINE 21 <---
worksheet.write(row, col + 1, cost)
row += 1
# Write a total using a formula.
worksheet.write(row, 0, 'Total')
worksheet.write(row, 1, '=SUM(B1:B4)')
workbook.close()
输出
File "test.py", line 21
worksheet.write(row, col, item)
^
IndentationError: expected an indented block
XlsxWriter 不希望块缩进,Python 会。
您需要缩进代码,如原始 example that the code above was taken from 所示。
花了一些时间编译后libxlsxwriter as a dylib for osx without success, I made the decision to switch to NSTask using the Python module XlsxWriter。但是另一个问题出来了:缩进!我想通过数组实现迭代,并以编程方式将每个值放在一行和一列中。但是我正在努力处理文档中的这个例子:
import xlsxwriter.
# Create a workbook and add a worksheet.
workbook = xlsxwriter.Workbook('Expenses01.xlsx')
worksheet = workbook.add_worksheet()
# Some data we want to write to the worksheet.
expenses = (
['Rent', 1000],
['Gas', 100],
['Food', 300],
['Gym', 50],
)
# Start from the first cell. Rows and columns are zero indexed.
row = 0
col = 0
# Iterate over the data and write it out row by row.
for item, cost in (expenses):
worksheet.write(row, col, item) #LINE 21 <---
worksheet.write(row, col + 1, cost)
row += 1
# Write a total using a formula.
worksheet.write(row, 0, 'Total')
worksheet.write(row, 1, '=SUM(B1:B4)')
workbook.close()
输出
File "test.py", line 21
worksheet.write(row, col, item)
^
IndentationError: expected an indented block
XlsxWriter 不希望块缩进,Python 会。
您需要缩进代码,如原始 example that the code above was taken from 所示。