4 lines
87 B
Python
4 lines
87 B
Python
from datetime import date
|
|
a = date(2000,2,28)
|
|
b = date(2001,2,28)
|
|
print(b-a) |