Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # b_str_translate.py
- from string import maketrans
- txt = "Python Is Awesome!"
- print txt
- switch_from = "IshowPAymnt! "
- switch_to = "hastfB oh art"
- sss = maketrans(switch_from, switch_to)
- qqq = txt.translate(sss)
- print qqq
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement