Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to add space before capital letter in python

text = 'WordWordWord'
new_text = ''

for i, letter in enumerate(text):
    if i and letter.isupper():
        new_text += ' '

    new_text += letter
Comment

PREVIOUS NEXT
Code Example
Python :: opencv imshow resize 
Python :: python scatterplot 
Python :: how to split a string in python with multiple delimiters 
Python :: how to add scrollbar to listbox in tkinter 
Python :: django round 2 decimal 
Python :: python subtract 2 strings 
Python :: python n choose r 
Python :: powershell to python converter 
Python :: python log transform column 
Python :: remove warnings from jupter notebook 
Python :: install chromedriver ubuntu python 
Python :: how to take two integers as input in python 
Python :: django form datepicker 
Python :: reverse linked list with python 
Python :: calcolatrice 
Python :: django import settings variables 
Python :: get variance of list python 
Python :: rotatable list python 
Python :: how to print dataframe in python without index 
Python :: how to move your cursor using python 
Python :: count number of words in a string python 
Python :: python no new line 
Python :: python how to set multiple conditional for single var 
Python :: file to lowercase python 
Python :: exoort csv google colab 
Python :: python invert dictionary 
Python :: django setup allowed hosts 
Python :: get index of list item in loop 
Python :: isprime in python 
Python :: python initialize dictionary with lists 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =