Cómo crear un script de python que verifique números 'pares' o 'impares'.

Dec 11 2022
Esta respuesta fue proporcionada por ChatGPT. La siguiente secuencia de comandos de Python determina si un número entero ingresado por el usuario es un número primo o un número par. Aquí hay un ejemplo de cómo se puede aplicar el script: Una vez más, gracias a Open-AI / ChatGPT por la ayuda en este artículo.

Esta respuesta fue proporcionada por ChatGPT

-Foto de Dan Cristian Pădureț en Unsplash

La siguiente secuencia de comandos de Python sencilla determina si un número entero ingresado por el usuario es un número primo o un número par.

# function to check if a number is prime
def is_prime(num):
  # check if the number is less than 2
  if num < 2:
    return False
  
  # check if the number is 2
  if num == 2:
    return True
  
  # check if the number is divisible by any number from 2 to the square root of the number
  for i in range(2, int(num**0.5) + 1):
    if num % i == 0:
      return False
  
  # if the number is not divisible by any number from 2 to the square root of the number, it is prime
  return True


# function to check if a number is even
def is_even(num):
  # check if the number is divisible by 2
  if num % 2 == 0:
    return True
  else:
    return False


# get a number from the user
num = int(input("Enter a number: "))

# check if the number is prime or even
if is_prime(num):
  print(num, "is a prime number.")
elif is_even(num):
  print(num, "is an even number.")
else:
  print(num, "is neither prime nor even.")

Aquí hay un ejemplo de cómo se puede aplicar el script:

Enter a number: 17

>> 17 is a prime number.

Una vez más, gracias a Open-AI/ChatGPT por la ayuda en este artículo.

Consulte su IA para obtener otras respuestas geniales como estas.

Sigue codificando y sigue mejorando ❤