Aprenent Python Recorrent el camí pas a pas

35 Time

Utilització del mòdul time.

Exemples de formats de temps:

>>> from time import gmtime, strftime
>>> strftime("%a, %d, %b %Y %H:%M:%S +0000", gmtime())
'Wed, 20, Jul 2016 13:31:40 +0000'
>>> print (time.strftime("%d/%m/%y"))
20/07/16
>>> print (time.strftime("%d/%m/%y %H:%M:%S %Z"))
20/07/16 15:45:44 CEST

CEST vol dir Central European Sumer Time

Font: Documentació Python 3.4