2010-02-03から1日間の記事一覧

今日のスクリプト

フォーマット調整のためのスクリプト。考えて書くのに20分もかかってしまった。 #!/bin/env python # '\r\n' is needed to open on MSwindows addfile = open('old.txt', 'r') tmplist = addfile.readlines() newfile = open('new.txt', 'w') col1 = list() …