Python3 String Lower
# Python3.x Python3 lower() Method
[ Python3 Strings](#)
* * *
## Description
The Python lower() method converts all uppercase characters in a string to lowercase.
## Syntax
The syntax for the lower() method is:
str.lower()
## Parameters
* None.
## Return Value
Returns a string with all uppercase characters converted to lowercase.
## Example
The following example demonstrates the usage of lower():
#!/usr/bin/python3 str = " EXAMPLE....WOW!!!"print( str.lower() )
The output of the above example is:
example....wow!!!
* * Python3 Strings](#)
YouTip