I'm quite new to python and i would like to split a string of numbers like "12" or "1234" in two parts by separating the string in the middle with " ". e.g.: "12" --> "1 2", "1234" --> "12 34"
How can i do this? I've tried it multiple times with split() now and I just don't make it
Pseudocode:
split("12")
result = "1 2"