Task
Given this sheet (rows shown below as Python dicts for clarity):
A1='Item', B1='Qty'
A2='Pen', B2=3
A3='Cup', B3=7
What does this print?
for row in sheet.iter_rows(min_row=2, values_only=True):
print(row[0], row[1])
Type the exact output (two lines).