Capitalize the First Letter of Each Word in a String using Python July 21, 2021 Python 0 Comments 311 Views title method text = 'this is a simple text' result = text.title() print(result) # This Is A Simple Text
Leave a Comment
Cancel reply