Factorial en Python
Publicado por Vladimir (11 intervenciones) el 30/12/2018 15:53:54
Hola buenos días, como puedo sacar el factorial de varios numeros utilizando la funcion de factorial que ofrece python import math, pues me genera una exepcion:
math.factorial([5,3,7,20])
Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
math.factorial([5,3,7,20])
TypeError: an integer is required (got type list)
math.factorial(5,3,7,20)
Traceback (most recent call last):
File "<pyshell#16>", line 1, in <module>
math.factorial(5,3,7,20)
TypeError: factorial() takes exactly one argument (4 given)
espero me puedan ayudar, Gracias. utilizo python 3.7.0
math.factorial([5,3,7,20])
Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
math.factorial([5,3,7,20])
TypeError: an integer is required (got type list)
math.factorial(5,3,7,20)
Traceback (most recent call last):
File "<pyshell#16>", line 1, in <module>
math.factorial(5,3,7,20)
TypeError: factorial() takes exactly one argument (4 given)
espero me puedan ayudar, Gracias. utilizo python 3.7.0
Valora esta pregunta
0