Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to change a string to small letter in python

my_str = "Hello World"
my_str = my_str.lower()
print(my_str) # outputs "hello world" on the terminal
 
PREVIOUS NEXT
Tagged: #change #string #small #letter #python
ADD COMMENT
Topic
Name
6+2 =