I have a word list contains in a text file; below I show an example:
place
lime
nest
land
I want to get an other file with the content below:
pl@ce
lim3
n3st
l@nd
This mean that:
- the letter
a
must be transform in in the char@
but in a word must be only 1 change soapart
becomesap@rt
and not@p@rt
. - the letter
e
must be transform in in the number3
This is first time that I use stackoverflow so sorry for my writing and for my English.
I'm also new to coding (python) so I might not understand all the code very well.