Trying to get the integer value of a data table row

Your code fetches you the row. But now you need a particular column of that row to print

score1 = app_tables.button_capture_from_user.get(question_number = 1)['column name']

This will print the value of that particular column.

1 Like