摘要: ``` import sys in_file = open(sys.argv[1]) out_file = open(sys.argv[2], 'w') lis = [x.split() for x in in_file] for x in zip(*lis): for y in x: print >> out_file, y + '\t', print >>... 阅读全文
posted @ 2017-01-13 23:22 liuhui_pine 阅读(198) 评论(0) 推荐(0)