使用 python 循环遍历 Google 幻灯片 Table 的单元格
Loop through a Google slides Table's cell with python
我正在使用幻灯片 API 来建立一些 table 单元格的格式。我的 table 是 5 行 x 3 列。这些是 0 索引的。
我不需要对第一列的任何单元格进行任何格式化,所以我的起点必须是 (0, 1)。
我正在使用的特定 API 请求是 updateTextStyle
updateTextStyle 是一个具有 cellLocation 属性 的对象,它又是一个 tableCellLocation 对象
通常,我会使用双 for 循环,其中 i 是行,j 是列,但是,由于 Python 没有 counttable 迭代(据我所知),我不知道从 1 列索引开始循环的方法。
对象看起来像这样:
{
"rowIndex": integer,
"columnIndex": integer
}
那么,我如何从起点和定义的终点迭代一个数字?
您可以使用 range 函数
实现此目的
for i in range(start_i, end_i-1):
for j in range(start_j, end_j-1):
pass # do stuff here
我正在使用幻灯片 API 来建立一些 table 单元格的格式。我的 table 是 5 行 x 3 列。这些是 0 索引的。 我不需要对第一列的任何单元格进行任何格式化,所以我的起点必须是 (0, 1)。
我正在使用的特定 API 请求是 updateTextStyle
updateTextStyle 是一个具有 cellLocation 属性 的对象,它又是一个 tableCellLocation 对象
通常,我会使用双 for 循环,其中 i 是行,j 是列,但是,由于 Python 没有 counttable 迭代(据我所知),我不知道从 1 列索引开始循环的方法。
对象看起来像这样:
{
"rowIndex": integer,
"columnIndex": integer
}
那么,我如何从起点和定义的终点迭代一个数字?
您可以使用 range 函数
实现此目的for i in range(start_i, end_i-1):
for j in range(start_j, end_j-1):
pass # do stuff here