How do I lowercase a string in Python? You can use string method lower() to lowercase a string in Python as shown in the below example – Default s = "HELLO World" print(s.lower()) ## Returns hello world 12345 s = "HELLO World" print(s.lower()) ## Returns hello world Tags: FAQ, Python