I'm a beginner both with python and openpyxl so please bear with me.
I'm learning excel manipulation using excel to automate some tasks at work and I encountered this line from the openpyxl tutorial
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)))
what does the 3rd line do? what does the underscore on the left mean?
this is from https://openpyxl.readthedocs.io/en/default/usage.html