Square bracket access works, see e.g. here:
For example to get the data of a specific column:
import xlwings as xw
wb = xw.Workbook.active()
xw.Range('TableName[ColumnName]').value
Or to get the column including header and Total row, you could do:
xw.Range('TableName[[#All], [ColumnName]]').value
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…