String method: With a minor replacement : String Replace : String : Python examples (example source code) Organized by topic

C++
PHP
Python
Python Home »  String   » [  String Replace  ]  Screenshots 
 



String method: With a minor replacement




quote = "Python is easy to use."

print "Original quote:"
print quote

print "\nWith a minor replacement:"
print quote.replace("five""millions of")

print "\nOriginal quote is still:"
print quote

           
       
Related examples in the same category
1.  Replace all Replace all
2.  Replace one Replace one
3.  String replacement String replacement
4.  String replace Demo String replace Demo
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.