Guest User

Untitled

a guest
Jun 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. >>> a = "electronics>>mobile>>smartphone"
  2. >>> a.replace(">>"," ")
  3. 'electronics mobile smartphone'
  4. >>>
  5.  
  6. a = "electronics>>mobile>>smartphone"
  7.  
  8. import re
  9. re.sub(">>"," ",a)
  10.  
  11. a.replace(">>","")
Add Comment
Please, Sign In to add comment