def factorial(n): """ Compute the factorial of a number Args: n (real): input number Returns: real: n! """ return gamma(n+1)