|
|
|
|
|
by jotaass
895 days ago
|
|
I don't think it's clever, it's quite unintuitive and ugly. To me anyway. If the author really wanted to cram everything into a list comprehension, the logical way to think about it is: (
(int(tsc, 16), int(pc, 16))
for tsc, _, pc, *_ in (line.strip().split(",") for line in fp)
),
Which is, of course, almost as ugly. Just use a for loop and yield |
|
I think I would have written it like that:
And when it was still cool: map(parse, fp)