String method : String Case : String PYTHON examples


PYTHON examples » String » String Case »

 

String method


String method: to upper case

quote = "Python is easy to use."

print "Original quote:"
print quote

print "nIn uppercase:"
print quote.upper()

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 Case