Home / Python Strings / How to Return String in Lower Case in Python In this example we will show how to return the string in lower case using the lower() method in Python. Source Code my_str = 'Python' print(my_str) print(my_str.lower()) Output: Python python