Answers for "how to convert small letters to capital letters in python"

9

python to uppercase

original = Hello, World!

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

python capitalize the entire string

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

how to convert small letters to capital letters in python

a=input(a)
section_1=upper(a)
print(section_1)
Posted by: Guest on August-13-2021

Code answers related to "how to convert small letters to capital letters in python"

Python Answers by Framework

Browse Popular Code Answers by Language