Answer to Question #3387 in Python for mukunda

Question #3387
Write about yourself in a text file and save it as “aboutme.txt” take a search string as “name” and find that string in the “aboume.txt” file.
1
Expert's answer
2011-08-02T14:18:21-0400
import re

source = "Me is Rahmadja Abdulaevich.\nMe learn python."
search = "Rahmadja"

fout = open ("aboutme.txt", "w")
fout.write (source)
fout.close()

for s in open ("aboutme.txt"):
if re.search( search, s ):
& print( search, "is at", re.search( search, source ).start(0), "position of the line:", s )
& break

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS