Copyright © tutorialspoint.com
This method returns a copy of the string in which all case-based characters have been lowercased.
str.lower() |
Here is the detail of parameters:
NA
It returns a copy of the string in which all case-based characters have been lowercased.
#!/usr/bin/python str = "THIS IS STRING EXAMPLE....WOW!!!"; print str.lower(); |
This will produce following result:
this is string example....wow!!! |
Copyright © tutorialspoint.com