New to programming in general, so I'm probably going about this the wrong way. I'm writing an lxml parser where I want to omit HTML table rows that have no content from the parser output. This is what I've got:
for row in doc.cssselect('tr'):
for cell in row.cssselect('td'):
sys.stdout.write(cell.text_content() + '\t')
sys.stdout.write '\n'
The write() stuff is temporary. What I want is for the loop to only return rows where tr.text_content != ''. So I guess I'm asking how to write what my brain thinks should be 'for a in b if a != x' but that doesn't work.
Thanks!