Update d_04.py

This commit is contained in:
Bill Buchanan
2026-01-15 18:31:23 +00:00
committed by GitHub
parent dfc2ffe1ca
commit 5bdfeadf5f

View File

@@ -46,6 +46,6 @@ def is_probable_prime(n):
rtn=is_probable_prime(testval)
if (rtn==True):
print str(testval) + " is a prime"
print (str(testval) + " is a prime")
else:
print str(testval) + " is not a prime"
print (str(testval) + " is not a prime")