Hello and welcome,
Please see this post for a similar issue.
Your screenshot indicates that you are displaying the row object rather than the data “inside” the row object. Linked rows can be confusing at first, but basically you need to index to get inside of them. Example,
# assuming this is from a table where "reciepe_rows" is a column with the type "link to a single row".
# That is, this column is a link to a single row from another table.
# here I'm now extracting the "receipe_name" text from the linked row
row['receipe_rows']['receipe_name']
I’m going from memory here, so please see the post that I linked to above.