ciąg Python po postaci
# 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:]