Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I open a file, Stud.txt, and then replace any occurences of "A" with "Orange"?

share|improve this question
2  
Please (as always) follow general question guidelines, state any special restrictions, show what you've tried so far, and ask about what specifically is confusing you. – Roger Pate Nov 8 '10 at 21:23
2  
Please, also, mark your homework with the [homework] tag. – S.Lott Nov 9 '10 at 0:01

5 Answers

with open("out.txt", "wt") as out:
    for line in open("Stud.txt"):
        out.write(line.replace('A', 'Orange'))
share|improve this answer
3  
+1 for very nice, pythonic answer, but -1 for giving out answers to homework problems... – BlueRaja - Danny Pflughoeft Nov 8 '10 at 21:23
@Blue - the homework guidelines say not to downvote answers for homework questions. Especially ones like this that are quite possibly legitimate. +1 for the right way to do this. – katrielalex Nov 8 '10 at 21:28
4  
"t" for text mode is Python 3 only. Also, you provide a context manager for your ouput file, but fail to close your input file, which seems inconsistent. – Steven Rumbalski Nov 8 '10 at 21:50
@katrielalex: There are no downvotes, I simply did not upvote. But giving out answers to homework is not the right way to do this – BlueRaja - Danny Pflughoeft Nov 8 '10 at 22:14
@Blue: ah, sorry. – katrielalex Nov 8 '10 at 22:15
show 1 more comment

Something like

file = open('Stud.txt')
contents = file.read()
replaced_contents = contents.replace('A', 'Orange')

<do stuff with the result>
share|improve this answer
with open('Stud.txt','r') as f:
    newlines = []
    for line in f.readlines():
        newlines.append(line.replace('A', 'Orange'))
with open('Stud.txt', 'w') as f:
    for line in newlines:
        f.write(line)
share|improve this answer

easiest way is to do it with regular expressions, assuming that you want to iterate over each line in the file (where 'A' would be stored) you do...

import re

input = file('C:\full_path\Stud.txt), 'r')
#when you try and write to a file with write permissions, it clears the file and writes only #what you tell it to the file.  So we have to save the file first.

saved_input
for eachLine in input:
    saved_input.append(eachLine)

#now we change entries with 'A' to 'Orange'
for i in range(0, len(old):
    search = re.sub('A', 'Orange', saved_input[i])
    if search is not None:
        saved_input[i] = search
#now we open the file in write mode (clearing it) and writing saved_input back to it
input = file('C:\full_path\Stud.txt), 'w')
for each in saved_input:
    input.write(each)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.