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