Es que hice una funcion para regresar un date y me sale un error asi global name datetime is not defined. Obviamente esta import datetime
Código funcion:
Ver original
def cambiar_fecha(s): v = s.strip('\r') anio =v[len(v)-4:len(v)] mes = v[2:3] dia = v[0] fecha = datetime.date(anio,mes,dia) return fecha
en donde s es un string tipo 1/1/2009...
muchas gracias por su ayuda...