Question: For Python Program 17. Prime Numbers A prime number is a number that is only evenly divisible by itself and 1. For example, the number
17. Prime Numbers A prime number is a number that is only evenly divisible by itself and 1. For example, the number S is prime because it can only be evenly divided by 1 and S. The number 6, how- ever, is not prime because it can be divided evenly by 1, 2, 3, and 6. Write a Boolean function named is prime which takes an integer as an argument returns true if the argument is a prime number, or false otherwise. Use the funct a program that prompts the user to enter a number then displays a message indicating whether the number is prime. -| TIP: Recall that the % operator divides one number by another and returns the remainder of the division. In an expression such as num1 % num2, the % operator will return 0 if num1 is evenly divisible by num2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
