Created
June 7, 2013 23:37
-
-
Save ChristinaLK/5733150 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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