how to write uppercase in python code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: python upper
>>> funny = 'haha'
>>> print(funny.upper())
HAHA
Example 3: how do you change a string to only uppercase in python
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)