Advertisement
here2share

# str_replace_all.py

Jun 21st, 2015
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. # str_replace_all.py
  2.  
  3. a = "It's P'y't'h'o'n !!!"
  4. a = a.replace("'",'')
  5. print a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement