Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Twisted Prime Number Checker #83

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Python/TwistedPrime.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -------Twisted Prime---------
# Prime numbers which when reversed are also prime are called Twisted prime numbers.


def checkprime(n):
for i in range(2,int(n//2)):
if n%i==0:
return False
return True

n=int(input("Enter the number to be checked: "))
temp=n
rev=0
while(n!=0):
d=n%10
rev=rev+(d*10)
n=n/10
if checkprime(temp) and checkprime(rev):
print("Twisted Prime")
else:
print("Not Twisted Prime")