Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

primepartition

Krishna Maru answered on February 11, 2023 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers


primepartition

0

def factors(n):

factorlist = []

for i in range(1,n+1):

if n%i == 0:

factorlist.append(i)

return(factorlist)

def prime(n):

return(factors(n)==[1,n])

def primepartition(n):

for i in range(1,n//2+1):

if prime(i) and prime(n-i):

return(True)

return(False) 


Popularity 1/10 Helpfulness 1/10 Language whatever
Tags: whatever
Link to this answer
Share Copy Link
Contributed on Feb 11 2023
Krishna Maru
0 Answers  Avg Quality 2/10


X

Continue with Google

By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
X
Grepper Account Login Required

Oops, You will need to install Grepper and log-in to perform this action.