[Python] Problemi con time

Marco Chieppa | crap0101 crap0101 a riseup.net
Ven 28 Giu 2013 05:41:05 CEST


Il giorno Fri, 28 Jun 2013 03:01:02 +0200
Marcello <marcello a linuxvil.it> ha scritto:

> Ciao a *
> 
> ho una stringa che recupero da un DB
> tempo = "2013-06-25 16:25:00"
> 
> e dovrei modificare in
> 25/06/2013 16:25
> 
> potrei utilizzare string per spostare i caratteri, ma vorrei utilizzare
> time per vari motivi.
> quindi provo con
> 
> print time.strftime("%d/%m/%Y %H.%M" ,time.localtime(tempo))
> 
> [...]

cosė?

>>> tempo = "2013-06-25 16:25:00"
>>> time.strftime("%d/%m/%Y %H:%M", time.strptime(tempo,"%Y-%m-%d %H:%M:%S"))
'25/06/2013 16:25'

(localtime non si aspetta una stringa)



-------------- parte successiva --------------
Un allegato non testuale č stato rimosso....
Nome:        signature.asc
Tipo:        application/pgp-signature
Dimensione:  198 bytes
Descrizione: non disponibile
URL:         <http://lists.python.it/pipermail/python/attachments/20130628/795ed9af/attachment.pgp>


Maggiori informazioni sulla lista Python