Glossary

Exercise 16-10 (key points):

`ws["B3:F20"]` returns a tuple of row tuples. Each inner tuple is a sequence of Cell objects. Access `.value` on each cell. - The first element of `data` (index 0) is the header row. Subsequent elements are data rows. - This pattern is more reliable than `skiprows` when the layout is irregular.

Learn More

Related Terms