Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

insert into string python

>>> line = 'Kong Panda'
>>> index = line.find('Panda')
>>> output_line = line[:index] + 'Fu ' + line[index:]
>>> output_line
'Kong Fu Panda'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #insert #string #python
ADD COMMENT
Topic
Name
2+6 =