I've a string (let's say "Hello World") and I want to save the first characters of it in different variables (ex. character1 = "H", character2 = "e"...).
How do I get the nth character in the string?
Thanks!
Bonus: How could I do it with Python? Would it be better than doing it client-side?