Dec-26-2018, 11:28 PM
(Dec-26-2018, 11:19 PM)Gribouillis Wrote: @snippsat Why do you think next(ifo) is better than ifo.readline() ?Not sure i did use
readline()
before to skip header,but after i start using next()
i just think it read and look better.In Python 2 i also did sometime
ifo.next()
,but Python 3 made it nicer i think with next(ifo)
.