Question: In Python please! Activity 0 A number is prime if its only factors are 1 and itself. Write a function called isPriue that determines whether
In Python please!

Activity 0 A number is prime if its only factors are 1 and itself. Write a function called isPriue that determines whether a number is prime by using Wilson's theorem that states "The number n is a prime number if and only if n divides ((n-1)! ? The function should return a Boolean, True if it is a prime and False otherwise. This requires you to also write a function that returns the factorial of a given positive integer. You have to write your own version of the factorial function. Name this function factorial. The factorial of a positive integer n (written n!) is the product 1*2*3*4*.*n Write a main function that prompts the user to enter a number, then reports to the user if the number they entered was a prime or not using the above functions you wrote Use the input function to get user input You should then call your main function in your program to run your code Below is a log of two runs. Format your solution to match: Enter a positive integer: 1ee07 10007 is a prime number Enter a positive integer: 88 88 is not a prime number
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
