Question: Write a python function called is_prime(num) that will check whether an input number if a prime number or not. It will have one input and
- Write a python function called is_prime(num) that will check whether an input number if a prime number or not. It will have one input and it will output true or false. For example, print(is_prime(13)) will output True
Output these:
print(is_prime(407))
print(is_prime(9901))
print(is_prime(68718952447))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
