Definition:
Back to the main index of this glossary
>>> import re
>>> french = 'Je pense donc je suis.'
>>> german = 'Übung macht den Meister.'
>>> english = '"Never increase, beyond what is necessary, the number of entities required to explain anything." -- William of Ockham (1285-1349)'
>>> for i in z:
... if re.match('.*[sr].\Z', i):
... output = re.match('.*[sr].\Z', i)
... print output.group(0)
...
Je pense donc je suis.
Übung macht den Meister.
Back to the main index of this glossary
