I have been playing around with Python lately, and there is one operation that I have yet to figure out how to do. This is splitting a string into its individual characters, which I used to be able to do with other languages by simply splitting with an empty separator. In python, however, this returns an error.
Code:
>>> "testing123".split("")
Traceback (most recent call last):
File "<pyshell#14>", line 1, in ?
"testing123".split("")
ValueError: empty separator
How can I do this simple operation? Thanks...