Guest User

Untitled

a guest
Jun 18th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. import re
  2.  
  3. rstr = """
  4. Address The Westshore Grand,
  5. A Tribute Portfolio Hotel, Tampa
  6.  
  7. Telephone 52 70 90 00
  8. E-mail info.suchona@gmail.com
  9.  
  10.  
  11. Address hotels near 1255 north palm ave
  12. sarasota florida
  13.  
  14. Telephone 62 40 80 00
  15. E-mail info.niit@hotmail.com
  16. """
  17. address = re.findall(r'(Address.+)',rstr)[0].strip()
  18. phone = re.findall(r'(Telephone.+)',rstr)[0].strip()
  19. email = re.findall(r'(E-mail.+)',rstr)[0].strip()
  20. print(f'{address}n{phone}n{email}')
  21.  
  22. Address The Westshore Grand,
  23. Telephone 52 70 90 00
  24. E-mail info.suchona@gmail.com
  25.  
  26. The Westshore Grand, A Tribute Portfolio Hotel, Tampa
  27. 52 70 90 00
  28. info.suchona@gmail.com
  29.  
  30. hotels near 1255 north palm ave sarasota florida
  31. 62 40 80 00
  32. info.niit@hotmail.com
Add Comment
Please, Sign In to add comment