Split String dans le Python moyen

firstpart, secondpart = string[:len(string)/2], string[len(string)/2:]
Marton