sorry if i worded the question wrong, but I am trying to figure out how to split user input into into separate strings each containing only 2 letters so an input of "hello world" would look something like ["he", "el", "lo", " w", "or", "ld"]
i am using this for a program i am creating and this block of code would is crucial to its functionality. If anyone has any questions, advice, or anything else i am willing respond, Thanks.
PS. I already created the code that ads a space at the end of the user input in the event that there are an odd number of characters so please let me know if there is a better way of doing this.