Dodaj miejsce w określonym indeksie łańcuchu Python
>>> hash = '355879ACB6'
>>> hashlist = list(hash)
>>> hashlist.insert(4, '-')
>>> ''.join(hashlist)
'3558-79ACB6'
Cheerful Cormorant