The recursive case in the provided Python function for calculating the factorial is:
else: return (x * factorial(x - 1))
This part of the code represents the recursive step, where the function calls itself with a decremented value of x
until it reaches the base case (when x == 1
).