python to uppercase code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: python to uppercase
text = "Random String"
text = text.upper()
text = upper(text)
print(text)
>> "RANDOM STRING"
Example 3: python is uppercase
string = 'GEEKSFORGEEKS'
print(string.isupper())
string = 'GeeksforGeeks'
print(string.isupper())
Example 4: python upper
>>> funny = 'haha'
>>> print(funny.upper())
HAHA
Example 5: python3 lowercase
str.lower()
Example 6: python to uppercase
original = Hello, World!
upper = original.upper()
upper = upper(original)