Skip to content

Instantly share code, notes, and snippets.

@pgrangeiro
Created May 30, 2019 22:31
Show Gist options
  • Save pgrangeiro/fcde4e391b2fe4a80018b8ca40c6c4cc to your computer and use it in GitHub Desktop.
Save pgrangeiro/fcde4e391b2fe4a80018b8ca40c6c4cc to your computer and use it in GitHub Desktop.
def soma(a, b):
try:
return a + b
except TypeError:
print("Não é possível somar {} com {}".format(a, b))
sucesso = soma(1, 2)
print(sucesso)
>>> 3
falha = soma(1, "a")
>>> "Não é possível somar 1 com a"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment