view toolfactory/test-data/pyrevpos.python @ 34:5052ac89c036 draft

fix to argparse xml
author fubar
date Sat, 08 Aug 2020 06:06:45 -0400
parents 4d578c8c1613
children
line wrap: on
line source

# reverse order of text by row
import sys
inp = sys.argv[1]
outp = sys.argv[2]
i = open(inp,'r').readlines()
o = open(outp,'w')
for row in i:
   rs = row.rstrip()
   rs = list(rs)
   rs.reverse()
   o.write(''.join(rs))
o.close()