I need to do an input of the string 'AEN' and it must split into ('A', 'E', 'N')
Ive tried several different splits, but it never produces what i need.
The image shows the code I have done.
What im trying is that x produces a result like y. But, Im having issues whit how to achieve it.
x=input('Letras: ')
y=input('Letras: ')
print(x.split())
print(y.split())
Letras: AEN
Letras: A E N
['AEN']
['A', 'E', 'N']