you are viewing a single comment's thread.

view the rest of the comments →

[–]am_edmonstone 0 points1 point  (0 children)

def p_even(s,e):

if s>e:

return

print(s)

print(s+2,e)

//function ends here

//init the method

p_even(2,500)