3
Hello, I would like to understand a little more about strings in PYTHON. I’m developing a program, which consists of:
Pick up a STRING
Separate STRING from 3 to 3 characters
And store each part in a LIST
EX:
nome = "guilherme"
lista = ["gui","lhe","rme"]
Is there any way to do something like this ?
– Guilherme Henrique