Latest web development tutorials

Python3 lower () method

Python3 string Python3 string


description

Python lower () method converts the string in all uppercase characters to lowercase.

grammar

lower () method syntax:

str.lower()

parameter

  • no.

return value

Returns a string in all uppercase characters converted to lowercase generated string.

Examples

The following example shows lower () to use:

#!/usr/bin/python3

str = "w3big EXAMPLE....WOW!!!"

print( str.lower() )

Examples of the above output results are as follows:

w3big example....wow!!!

Python3 string Python3 string