slides06-ex4.py
Click here to get the file
Size
1 kB
-
File type
text/python-source
File contents
s = input("Digite o seu nome: ")
linha = ''
tipo = input("Voce quer alinhar 'a direita (d), esquerda (e) ou ao centro (c)? ")
if tipo.lower() not in "dec":
print("Digite um tipo correto!!")
else:
for letra in s:
linha = linha+letra
if tipo.lower() == "e":
#alinhado 'a esquerda:
print(linha)
elif tipo.lower() == "d":
#alinhado 'a direita:
print((len(s)-len(linha))*" "+linha)
else: #tipo.lower() == "c":
#formato de arvore:
print(((len(s)-len(linha))//2)*" "+linha)