Answers for "uppercase a character 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
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
2

python capitalize the entire string

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

Code answers related to "uppercase a character in python"

Python Answers by Framework

Browse Popular Code Answers by Language