モデル オブジェクトがあるとします。
print (dir(table))
['...', 'col1', 'col2', '...']
# this will output column 1 value
print (table.col1)
たとえば、次のように動的に実行したいと思います。
col = 'col1'
table.col
どうも
モデル オブジェクトがあるとします。
print (dir(table))
['...', 'col1', 'col2', '...']
# this will output column 1 value
print (table.col1)
たとえば、次のように動的に実行したいと思います。
col = 'col1'
table.col
どうも