-3
I have to read a name and display it diagonally, that is, from top to bottom.
But I’m not getting the logic right, I’ve come to this:
nome = input('Digite o seu nome: ')
tamanho = len(nome)
for nome in range(tamanho):
print(nome)
But it returns only the count of the String size, and I want instead of the count to display the respective letter of the name that the user typed.
Can you explain me better please? You want the user to enter a number and the letter that corresponds to this number appears?
– OtavioCapel