Convert All Lowercase Characters in a String to Uppercase using Python July 20, 2021 Python 0 Comments 715 Views upper method text = 'Hello world' result = text.upper() print(result) # HELLO WORLD
Leave a Comment
Cancel reply