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.
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