Guest User

Untitled

a guest
Jan 22nd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. import re
  2.  
  3. txt1 = "9.9,8.8,22.2,88.7,morris1.43@email.com,chat22.3@email.com,123.6,6.54"
  4. txt1 = re.sub(r',d+[.]d+', r'd+',txt1)
  5. print(txt1)
Add Comment
Please, Sign In to add comment