Python tiene funciones predefinidas para muchas operaciones matemáticas, lógicas, relacionales, bit a bit, etc. bajo el módulo «operador». Algunas de las funciones básicas se tratan en este artículo.
1. add(a, b) :- Esta función devuelve la suma de los argumentos dados.
Operación – a + b.
# Python code to demonstrate working of # add(), sub(), mul() # importing operator module import operator # Initializing variables a = 4 b = 3 # using add() to add two numbers print ("The addition of numbers is :",end=""); print (operator.add(a, b)) # using sub() to subtract two numbers print ("The difference of numbers is :",end=""); print (operator.sub(a, b)) # using mul() to multiply two numbers print ("The product of numbers is :",end=""); print (operator.mul(a, b))
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA