In Python:
>>> "asd qw asd".split("")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: empty separator
Let's adopt this behaviour.
In Python:
>>> "asd qw asd".split("")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: empty separator
Let's adopt this behaviour.