After struggling with data download with ill tempered CSV fields. How could use try/Except format.
LL = [(XXX,YYY,ZZZ),] or [[XXX,YYY,ZZZ],]
if above, how do i do below?
try:
IF XXX or YYY or ZZZ or AAA == 'N/A',
(dont process data...skip to except and pass)
except:
pass
staeted here: Remove/Replace Error from Tuple in python