How can I create a word in a list? for example:
entrada:
a='carro'
saida:
['c','a','r','r','o']
I know that using split transforms into list gets the whole word, I wonder if as a specific word turn list.
How can I create a word in a list? for example:
entrada:
a='carro'
saida:
['c','a','r','r','o']
I know that using split transforms into list gets the whole word, I wonder if as a specific word turn list.