这行在 python openpyxl 中是什么意思?

what does this line mean in python openpyxl?

我是 python 和 openpyxl 的初学者,所以请多多包涵。

我正在学习 excel 使用 excel 操作来自动执行工作中的一些任务,我在 openpyxl 教程中遇到了这一行

for row in range(10, 20):
    for col in range(27, 54):
        _ = ws3.cell(column=col, row=row, value="{0}".format(get_column_letter(col)))

第三行是做什么的? 左边的下划线是什么意思?

这是来自https://openpyxl.readthedocs.io/en/default/usage.html

下划线只是一个变量。某些语言赋予下划线以抛出 away/ignore 值的特殊含义。 Python 没有。但由于此处未使用该值,因此它是等效的。

其余的只是将 sheet 的单元格的值设置为列字母。 0 = A,1 = B,...