ocean #477(2007/07/10 11:52 GMT) [ Python ] Rating0/0=0.00
1 2 3 4 5 6 7 8 9 10 11
from __future__ import with_statement import sys def convert(input, output): with open(output, "w") as io: for line in open(input): if not line.startswith("#"): io.write(line) if __name__ == '__main__': convert(sys.argv[1], sys.argv[2])
Rating0/0=0.00-0+
[ reply ]
ocean
#477()
[
Python
]
Rating0/0=0.00
Rating0/0=0.00-0+
[ reply ]