Answers for "py to upper case"

6

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

how to convert lower case to upper case in python

a = "Hello, World!"
print(a.upper())
#output: HELLO, WORLD!
Posted by: Guest on December-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language