Python String lower method with Example – Python Tutorial

6 years ago Lalit Bhagtani 0

 In this tutorial, we will learn about python string lower method.
Python String Lower

lower method :

This method returns a copy of the string in which all the cased characters are converted to lowercase.

Syntax : < String Object >.lower( ) :  < String Object >

Example:

# create one string and assign it to variable s s = 'LOWER' # call lower() method on string s output = s.lower() # print the value of variable output print(output)

References :-

  1. lower() method Docs

That’s all for Python String lower method. If you liked it, please share your thoughts in comments section and share it with others too.

Previous