Curso-lenguaje-python/python-ofensivo/00_ejercicios/07_modulos01/math_operations.py

22 lines
282 B
Python
Raw Normal View History

2023-12-28 08:25:43 +01:00
#!/usr/bin/env python3
"""
Modulos
"""
def suma(x, y):
return x + y
def resta(x, y):
return x - y
def multiplicacion(x, y):
return x * y
def division(x, y):
if y == 0:
raise ValueError('[!] No se puede dividir por cero')
else:
return x / y