Skip to content

Instantly share code, notes, and snippets.

@JuniorLima
Created June 28, 2013 12:33
Show Gist options
  • Save JuniorLima/5884338 to your computer and use it in GitHub Desktop.
Save JuniorLima/5884338 to your computer and use it in GitHub Desktop.
Calcular data futura
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