lower case str python code example
Example 1: convert string to lowercase in python
str = 'HELLO'
print(str.lower())
#prints "hello"
Example 2: how to change a string to small letter in python
my_str = "Hello World"
my_str.lower()
print(my_str)
Example 3: lowercase letters python
string.lower()