2006-09-03から1日間の記事一覧

Python 習作

#!/usr/bin/python import sys fin = sys.stdin fout = sys.stdout indent = 8 new_indent = '\t\t' for line in fin: is_body = False spaces = 0 result = '' for c in line: if is_body: result += c else: if c == ' ': if spaces == indent: result += …