How to convert string to uppercase in Python

1 Answer

0 votes
s = 'Python Programming'

print(s)

s = s.upper()

print(s)



'''
run:

Python Programming
PYTHON PROGRAMMING

'''

 



answered Oct 25, 2020 by avibootz
...