Contamos con tu apoyo para compartir nuestros ensayos sobre las ciencias de la computación.
Ejemplo 1: cómo multiplicar en python
Multiply two integer numbers
num1=int(input("Enter the first number: "))#input value for variable num1
num2=int(input("Enter the second number: "))#input value for variable num2
mul=num1*num2;#perform multiplication operationprint("the product of given numbers is: ",mul)#display the product
When the above code is compiled and executed, it produces the following results
Enter the first number:23
Enter the second number is:32
the product of the given numbers is736
Ejemplo 2: multiplicación de dos o más números en python
# multiplication of two or more numbersdefmultiple(*a):
result =1for i in a:
result = result * i
return result
# insert any number of arguments for multiplication, example:
res = multiple(12,2,5)print(res)# In this example, code output is = 120
Ejemplo 3: python multiplica 2 variables
num1 ="2"# first variable
num2 ="2"# second variable
output = num1*num2 # multiplied number# Optional: print multiplied numberprint(output)
No se te olvide mostrar esta noticia si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)