Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import re
  2.  
  3. print(r'\t Tab')
  4. text='''kamil@wp.pl'''
  5. pattern=re.compile(r'\w')
  6.  
  7. matches=pattern.finditer(text)
  8.  
  9. for match in matches:
  10. print(match)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement