This code will work:
scsv = ""
for i in range (1000,3001):
if i % 2 == 0:
if '1' not in str(i) and '3' not in str(i) and '5' not in str(i) and '7' not in str(i) and '9' not in str(i):
scsv = scsv+str(i)+" , "
print (scsv[:-3])
This code is very basic but serves the purpose.