Created
June 28, 2013 12:33
-
-
Save JuniorLima/5884338 to your computer and use it in GitHub Desktop.
Calcular data futura
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import * | |
hoje = date.today() | |
data_limite = hoje + timedelta(days=60) | |
print hoje | |
print data_limite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment