On 28.05.2014 21:16, [email protected] wrote:
Dear all! I have two example files: tmp.csv: name value root mark 34 yestmp2.csv name value root I want to print a different text if I have more than one row and if I have only one row. My code is this: with open("tmp.csv") as p: header =p.next()
in general, DON'T use the next method, but the next() function (or readline as Alan suggested):
header = next(p) this will work also in python3, where the next method is gone. Wolfgang _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
