Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/p/

Sum of prime numbers in given range /cody/p/1.py
386 Views
0 Comments
def is_prime(n):
if n < 2:
return False
for i in range(2, n//2+1):
if not n%i:
return F