Skip to content

Commit

Permalink
Melhorado exercício 02 da seção de strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo committed Jun 22, 2022
1 parent 5e79434 commit c85c9b0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions secao_06_exercicios_strings/ex_02_inversor_maisculo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@
>>> inversor('lucca')
ACCUL
'ACCUL'
>>> inversor('douglas')
SALGUOD
'SALGUOD'
>>> inversor('TaTIana')
ANAITAT
'ANAITAT'
>>> inversor('MARIa')
AIRAM
'AIRAM'
"""


def inversor(nome):
def inversor(nome: str) -> str:
""" Escreva seu código aqui embaixo """

0 comments on commit c85c9b0

Please sign in to comment.