Posted by juvi on Wed 25th Jan 13:11 (modification of post by view diff)
download | new post
- def getRange():
- values = []
- for y in range(1900, 1940):
- if (y % 4 == 0 and y % 100 != 0) or (y % 400 == 0):
- values.append(y)
- return values
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.