Skip to content

Instantly share code, notes, and snippets.

@ChristinaLK
Created June 7, 2013 23:37
Show Gist options
  • Save ChristinaLK/5733150 to your computer and use it in GitHub Desktop.
Save ChristinaLK/5733150 to your computer and use it in GitHub Desktop.
import readin
import sys
if len(sys.argv) < 2:
print "No Input"
elif len(sys.argv) < 3:
print "No Output"
else:
t = readin.readDataFromFile(sys.argv[1])
#print t
u = str()
for i in t:
if i == "T":
u = u + "U"
else:
u = u + i
#print u
out = open(sys.argv[2], 'w') # 'w' opens in "write" mode, which erases existing content of the file
print >> out, u
out.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment