1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- Module(body=[Import(names=[alias(name='re',
- asname=None)]),
- Print(dest=None,
- values=[Call(func=Attribute(value=Name(id='re',
- ctx=Load()),
- attr='findall',
- ctx=Load()),
- args=[Str(s='[a-z]*ei[a-z]*'),
- Str(s='Is Dr. Greiner your friend, Julie?'),
- Attribute(value=Name(id='re',
- ctx=Load()),
- attr='IGNORECASE',
- ctx=Load())],
- keywords=[],
- starargs=None,
- kwargs=None)],
- nl=True),
- Print(dest=None,
- values=[Call(func=Attribute(value=Name(id='re',
- ctx=Load()),
- attr='findall',
- ctx=Load()),
- args=[Str(s='[a-z]*(ei|ie)[a-z]*'),
- Str(s='Is Dr. Greiner your friend, Julie?'),
- Attribute(value=Name(id='re',
- ctx=Load()),
- attr='IGNORECASE',
- ctx=Load())],
- keywords=[],
- starargs=None,
- kwargs=None)],
- nl=True),
- Print(dest=None,
- values=[Call(func=Attribute(value=Name(id='re',
- ctx=Load()),
- attr='findall',
- ctx=Load()),
- args=[Str(s='[a-z]*(ei|ie)([a-z]*)'),
- Str(s='Is Dr. Greiner your friend, Julie?'),
- Attribute(value=Name(id='re',
- ctx=Load()),
- attr='IGNORECASE',
- ctx=Load())],
- keywords=[],
- starargs=None,
- kwargs=None)],
- nl=True),
- Print(dest=None,
- values=[Call(func=Attribute(value=Name(id='re',
- ctx=Load()),
- attr='findall',
- ctx=Load()),
- args=[Str(s='[a-z]*(?:ei|ie)[a-z]*'),
- Str(s='Is Dr. Greiner your friend, Julie?'),
- Attribute(value=Name(id='re',
- ctx=Load()),
- attr='IGNORECASE',
- ctx=Load())],
- keywords=[],
- starargs=None,
- kwargs=None)],
- nl=True)])
|