string python demi karakter

# s = string
# insert space after 5th character
    new_s = s[:6] + " " + s[6:]
Stupid Shrew