Python briser la chaîne en sections

parts = [your_string[i:i+n] for i in range(0, len(your_string), n)]
Clumsy Capuchin