Suppose I have a model object.
print (dir(table))
['...', 'col1', 'col2', '...']
# this will output column 1 value
print (table.col1)
I would like to do it dynamically, for example:
col = 'col1'
table.col
Thx
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…