I want to know if there is a way to use the split function to separate every single character. For example, if I input "Hello", the program will output
H
e
l
l
o
Every tutorial I've found describes how to split the string on one or more specific characters.
H
e
l
l
o
Every tutorial I've found describes how to split the string on one or more specific characters.
Comment