Skip to content

Commit a0d032a

Browse files
authored
Adicionado mais um programa em python.
1 parent b48bb55 commit a0d032a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
print('Pode digitar seu nome com letras maiúsculas, minúsculas ou mistas.')
3+
4+
nome = input('Digite seu nome: ').upper()
5+
6+
invNome = nome[::-1]
7+
8+
print('{} ---> {}'.format(nome, invNome))

0 commit comments

Comments
 (0)