Please help with translate this Python code I am trying to figure out the meaning of this code and could not end up with a conclusion... does anybody know how this single line code is like when it is not single lined.
data = [columns.get_text().strip() for columns in column]
write.writerow(data)
I thought it is translated as the code below, but it showed different value..
for columns in column:
data = columns.get_text().strip()
write.writerow(data)
please help...