Answers for "how to change a string to small letter in python"

3

how to change a string to small letter in python

my_str = "Hello World"
my_str.lower()
print(my_str)
Posted by: Guest on October-15-2020

Code answers related to "how to change a string to small letter in python"

Python Answers by Framework

Browse Popular Code Answers by Language