String method : String toTitle : String PYTHON examples


PYTHON examples » String » String toTitle »

 

String method


String method: to a title


quote = "Python is easy to use."

print "Original quote:"
print quote

print "nAs a title:"
print quote.title()

print "nOriginal quote is still:"
print quote

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo String
» String toTitle