Statement Python Tutorial

sum = 0
for number in range( 2, 101, 2 ):
   sum += number
print "Sum is", sum