Answers for "Print out the capital letters in the string"

2

python capitalize the entire string

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

print("abc DEF".capitalize()

Abc def
Posted by: Guest on February-16-2021

Code answers related to "Print out the capital letters in the string"

Python Answers by Framework

Browse Popular Code Answers by Language