why the prime number calculate in with the help of python code ?

This is a tutorial program

Created by Rohan Waliya

def path(a):
total = 0
for i in range(0,a,15):
if (i% 5 == 0):
total = total + i
print total

pappu = path(1000)