Answers for "upper to lower in python"

5

convert string to lowercase in python

str = 'HELLO'
print(str.lower())

#prints "hello"
Posted by: Guest on February-01-2021
9

python to uppercase

original = Hello, World!

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

python uppercase

my_string = "this is my string"
print(my_string.upper())
# output: "THIS IS MY STRING"
Posted by: Guest on January-23-2021
1

uppercase python

strin = "aBc"
print string.upper()
>> "ABC"
print string.lower()
>> "abc"
Posted by: Guest on October-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language