Answers for "how to turn a string into uppercase 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
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

Code answers related to "how to turn a string into uppercase python"

Python Answers by Framework

Browse Popular Code Answers by Language