Definition:
Back to the main index of this glossary
>>> import re
>>> french = 'Je pense donc je suis.'
>>> german = 'Übung macht den Meister.'
>>> y = re.compile('\AJ')
>>> z = [french, german]
>>> for list in z:
... if re.match(y,list):
... print list
...
Je pense donc je suis.
Back to the main index of this glossary
