I have to read a name and display it diagonally, ie from top to bottom.
But I am not able to develop the correct logic, I have 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 size of the String, and I want it instead of the count to display its letter of the name that the user typed.