Change e letters to i in words: Difference between revisions

m
(→‎{{header|Python}}: Draft in response to a replacement notice. (Needs 3.8 for assignment operator))
Line 1,117:
Needs Python 3.8 or above for the assignment operator in the list comprehension.
{{Works with|Python|3.8}}
<lang python>'''WordsDictionary words twinned by (e -> i) replacement'''
 
 
Line 1,166:
if __name__ == '__main__':
main()</lang>
{{Out}}
<pre>('analyses', 'analysis')
('atlantes', 'atlantis')
9,655

edits