Ejercicio
Función Para Determinar El Estado Prime
Objectivo
Desarrolla un programa Python con una función llamada "is_prime" que tome un número entero como entrada y devuelva True si el número es primo, o False si no lo es.
Por ejemplo, si is_prime(127) devuelve True, entonces el número 127 es primo.
Ejemplo de ejercicio de Python
Mostrar código Python
# Define the function to check if a number is prime
def is_prime(number):
# Check for numbers less than 2 (they are not prime)
if number < 2:
return False
# Check for factors from 2 to the square root of the number
for i in range(2, int(number ** 0.5) + 1):
if number % i == 0: # If a factor is found, number is not prime
return False
# If no factors are found, number is prime
return True
# Main function to test the is_prime function
def main():
# Test the function with a prime number
print(is_prime(127)) # Expected output: True
# Test the function with a non-prime number
print(is_prime(100)) # Expected output: False
# Call the main function to execute the program
main()
Output
True
False
Código de ejemplo copiado
Comparte este ejercicio de Python