Prev: process cannot access the file because it is being used by otherprocess
Next: Decode II (more complex)
From: Paul Rubin on 21 Jun 2010 14:07 dirknbr <dirknbr(a)gmail.com> writes: > done_={} > for line in done: > done_[line.strip()]=0 > ... Maybe you mean: done_ = set(line.strip() for line in done) outf_ = set(line.split(',')[1] for line in outf) universe = done_ & outf # this finds the set intersection
First
|
Prev
|
Pages: 1 2 Prev: process cannot access the file because it is being used by otherprocess Next: Decode II (more complex) |