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

25

python to uppercase

text = "Random String"
text = text.upper() #Can also do 
text = upper(text)
print(text)

>> "RANDOM STRING"
Posted by: Guest on September-16-2020
1

lower upper in pytho

myString = "Hello"
myString.upper() #returns "HELLO"
myString.lower() #returns "hello"
Posted by: Guest on June-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
2

python capitalize the entire string

message="hi"
print(message)
print(message.upper())
Posted by: Guest on January-09-2020
1

uppercase python

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

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

Python Answers by Framework

Browse Popular Code Answers by Language