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