The csv reader object contains strings that are a list of elements, and as the error indicates, you cannot use operand ** for the list and integer. If you want to perform this operation between elements that you need to iterate over the lines.
You can familiarize yourself with the list:
sqrs = [[i **2 for for i in elem] for elem in sqr_lst ]
Then the result will be a nested sqr list of all elements (each nested list is a string)
source share