I am trying to pull data from a database and assign them to different lists. This specific error is giving me a lot of trouble \"TypeError: tuple indices must be integers, not s
Like the error says, row is a tuple, so you can't do row["pool_number"]. You need to use the index: row[0].
row
row["pool_number"]
row[0]