“Adicionar local em certa string python de índice” Respostas de código

Adicionar local em certa string python de índice

>>> hash = '355879ACB6'
>>> hashlist = list(hash)
>>> hashlist.insert(4, '-')
>>> ''.join(hashlist)
'3558-79ACB6'
Cheerful Cormorant

Adicionar local em certa string python de índice


>>> s='355879ACB6'
>>> s[4:4] = '-'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment

Real Raccoon

Respostas semelhantes a “Adicionar local em certa string python de índice”

Perguntas semelhantes a “Adicionar local em certa string python de índice”

Mais respostas relacionadas para “Adicionar local em certa string python de índice” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código