0
I’m new to programming, I’m trying to make a program that checks if a number inserted is prime, so I’m checking if the rest of the division of number by primes is zero.
def primo():
numero = input("Digite seu numero: ")
if numero%2 == 0:
print ("Seu numero não é primo")
elif numero %3 == 0:
print ("Seu numero não é primo")
elif numero %5 == 0:
print ("Seu numero não é primo")
elif numero %7 == 0:
print ("Seu numero não é primo")
else:
print ("Seu numero é primo")
but I’m getting Typeerror: not all Arguments converted During string formatting in the first "if" line. What I’m doing wrong ?
Thank you very much, it worked perfectly!
– Gabriel Andrade Vianna