Answers for "python high case"

2

python capitalize the entire string

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

python string caps lock

>>> s = 'sdsd'
>>> s.upper()
'SDSD'
Posted by: Guest on May-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language