Answers for "how to insert in a string in python"

0

add place in certain index python string

>>> hash = '355879ACB6'
>>> hashlist = list(hash)
>>> hashlist.insert(4, '-')
>>> ''.join(hashlist)
'3558-79ACB6'
Posted by: Guest on July-24-2020
-1

insert into string python

>>> line = 'Kong Panda'
>>> index = line.find('Panda')
>>> output_line = line[:index] + 'Fu ' + line[index:]
>>> output_line
'Kong Fu Panda'
Posted by: Guest on July-24-2020

Code answers related to "how to insert in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language