Comment ajouter la sous-chaîne pour chaîner en position spécifique dans Python

>>> hash = "355879ACB6"
>>> hash = hash[:4] + '-' + hash[4:]
>>> print(hash)
3558-79ACB6
Obnoxious Oystercatcher