Victor Hooi schreef:
with open(self.full_path, 'r') as input, open(self.output_csv,
'ab') as output:
I think I would write that as
with open(self.full_path, 'r') as input:
with open(self.output_csv, 'ab') as output:
That introduces an extra indentation level, but that doesn't really
bother me. Does this seem like a good idea?
Best regards,
Roel
--
"Met een spitsvondig citaat bewijs je niets."
-- Voltaire
--
https://mail.python.org/mailman/listinfo/python-list
