String method: to lower case : String Case « String « Python
- Python
- String
- String Case
String method: to lower case

quote = "Python is easy to use."
print "Original quote:"
print quote
print "\nIn lowercase:"
print quote.lower()
print "\nOriginal quote is still:"
print quote
Related examples in the same category