My code fails for test cases:2,3,27 can anyone help me rectify ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

My code fails for test cases:2,3,27 can anyone help me rectify ?

Prime number or not https://code.sololearn.com/cSC5Z43IBNA0/?ref=app

6th Aug 2021, 5:22 AM
alagammai uma
alagammai uma - avatar
23 Answers
+ 3
There is a small mistake. A number is prime if it's not divisible by any of the numbers less than itself. Not if it's indivisible by just one. Your loop breaks in just one step as it has break in both if else. For example, n = 9 for i in range(2, n): if n%i == 0: print("not prime") break else: print("prime") break Iteration 1: i = 2 9%2 == 0 is False else part executed "prime" break Hence it prints "prime" which is incorrect. So, what to do? We need to check if there was any case where n was divisible. We can take help of a flag which is initially True and make it False when a divisor is encountered. So, after the end of the loop if the Flag is True - Prime and otherwise - Not prime. n = 9 flag = True for i in range(2, n): if n%i == 0: print("Not prime") flag = False break if flag == True: print("Prime") To be continued...
6th Aug 2021, 6:34 AM
abhinav
abhinav - avatar
+ 2
n = 9 for i in range(2, int(n/2)): if n%i == 0: printf("not prime") break else: print("prime") break
7th Aug 2021, 2:48 AM
Atul [Inactive]
+ 2
Calvin Thomas thanks for reminding me
7th Aug 2021, 9:15 AM
Atul [Inactive]
+ 1
Hi again! num is better to be a input variable rather than a direct value. Hence, it should be an end argument for range() function. I think these are things you have to consider. Nothing else. num= int(input()) if num>1: for i in range(2,num):
6th Aug 2021, 5:41 AM
Python Learner
Python Learner - avatar
+ 1
6th Aug 2021, 5:49 AM
alagammai uma
alagammai uma - avatar
+ 1
... continuation Luckily Python provides a better way to achieve this: n = 9 for i in range(2, n): if n%i == 0: print("not prime") break else: print("prime") This is a loop-else. Here, the else part is executed only if the loop ends without break. And about sqrt(n), it's just an optimisation. So you can replace range(2, n) with range(2, int(n**.5)+1)
6th Aug 2021, 6:41 AM
abhinav
abhinav - avatar
+ 1
from math import sqrt num = 10 if num == 1: print('not prime') elif num == 2: print('prime') elif num ==3: print('prime') else: for i in range(2, int(sqrt(num)+1)): print(i) if num%i == 0: print('not prime') break else: continue else: print('prime')
6th Aug 2021, 6:47 AM
Abs Sh
Abs Sh - avatar
6th Aug 2021, 7:40 AM
alagammai uma
alagammai uma - avatar
+ 1
alagammai uma Here's a possible solution: print("not " * (not ((n := int(input())) > 1 and all(n % i for i in range(2, n // 2 + 1)))) + "prime") # Hope this helps
6th Aug 2021, 5:31 PM
Calvin Thomas
Calvin Thomas - avatar
+ 1
Calvin Thomas thank you
6th Aug 2021, 5:34 PM
alagammai uma
alagammai uma - avatar
+ 1
Atul [Inactive] This won't work for inputs lesser than 2.
7th Aug 2021, 6:55 AM
Calvin Thomas
Calvin Thomas - avatar
+ 1
Yes Calvin Thomas that's y I asked for correction of code
7th Aug 2021, 6:56 AM
alagammai uma
alagammai uma - avatar
7th Aug 2021, 9:14 AM
Atul [Inactive]
+ 1
Atul [Inactive] it's correct; outputs prime!
8th Aug 2021, 9:51 AM
abhinav
abhinav - avatar
0
For 2 and 3 it obvious int(num/2) returns 0
6th Aug 2021, 5:36 AM
Abs Sh
Abs Sh - avatar
0
And that's not how you check a prime number
6th Aug 2021, 5:36 AM
Abs Sh
Abs Sh - avatar
0
You get the square root of num not divide by two
6th Aug 2021, 5:37 AM
Abs Sh
Abs Sh - avatar
0
JUMP_LINK__&&__Python__&&__JUMP_LINK Learner I respect your answer but it's not best algorithm to use for larger numbers
6th Aug 2021, 5:45 AM
Abs Sh
Abs Sh - avatar
6th Aug 2021, 5:45 AM
alagammai uma
alagammai uma - avatar
6th Aug 2021, 5:52 AM
Abs Sh
Abs Sh - avatar