Python diviser la chaîne en deux

firstpart, secondpart = string[:len(string)/2], string[len(string)/2:]
Wide-eyed Warbler