Advertisement
teslariu

error_func

Sep 11th, 2021
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4.  
  5. def sumar(a,b):
  6.     """Función que suma números, no concatena ni extiende listas"""
  7.     if not isinstance(a, (int, float)) or  not isinstance(b, (int, float)):
  8.         raise TypeError("Los argumentos de sumar deber ser dos números")
  9.     return a+b
  10.  
  11.  
  12. print(sumar([1,2,3],[25,25]))
  13. print("Chau")
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement