Diferencia entre revisiones de «Usuario:Lmorillas/intropyaytozgz/fechas»
De WikiEducator
(Página creada con '{{MiTitulo|Fechas}} <source lang="python"> >>> from datetime import datetime >>> dt = '16-MAR-2010 03:37:04' >>> datetime.strptime(dt, " %d-%b-%Y %H:%M:%S ") datetime.datetime…') |
|||
Línea 1: | Línea 1: | ||
{{MiTitulo|Fechas}} | {{MiTitulo|Fechas}} | ||
+ | http://docs.python.org/2/library/datetime.html | ||
<source lang="python"> | <source lang="python"> |
Última revisión de 20:45 3 dic 2012
http://docs.python.org/2/library/datetime.html
>>> from datetime import datetime >>> dt = '16-MAR-2010 03:37:04' >>> datetime.strptime(dt, " %d-%b-%Y %H:%M:%S ") datetime.datetime(2010, 3, 16, 3, 37, 4)