Answers for "how to convert string in lowercase in python"

3

how to change a string to small letter in python

my_str = "Hello World"
my_str.lower()
print(my_str) # outputs "hello world" on the terminal
Posted by: Guest on October-15-2020
9

python to uppercase

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)
Posted by: Guest on March-12-2020
0

print lowercase in python

cases in python
Posted by: Guest on March-25-2021

Code answers related to "how to convert string in lowercase in python"

Python Answers by Framework

Browse Popular Code Answers by Language