chaîne python après le caractère
# s = string
# insert space after 5th character
new_s = s[:6] + " " + s[6:]
Stupid Shrew
# s = string
# insert space after 5th character
new_s = s[:6] + " " + s[6:]