Format time string in Python 3.3

49,663

Solution 1

time.localtime returns time.struct_time which does not support strftime-like formatting.

Pass datetime.datetime object which support strftime formatting. (See datetime.datetime.__format__)

>>> import datetime
>>> '{0:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now())
'2014-02-07 11:52:21'

Solution 2

And for newer versions of Python (3.6+, https://www.python.org/dev/peps/pep-0498/ purely for completeness), you can use the newer string formatting, ie.

import datetime

today = datetime.date.today()

f'{today:%Y-%m-%d}'
> '2018-11-01'

Solution 3

You can alternatively use time.strftime:

time.strftime('{%Y-%m-%d %H:%M:%S}')
Share:
49,663
markmnl
Author by

markmnl

My blog: http://athreadwithnoname.com/

Updated on November 02, 2020

Comments

  • markmnl
    markmnl over 3 years

    I am trying to get current local time as a string in the format: year-month-day hour:mins:seconds. Which I will use for logging. By my reading of the documentation I can do this by:

    import time
    '{0:%Y-%m-%d %H:%M:%S}'.format(time.localtime())
    

    However I get the error:

    Traceback (most recent call last):
    File "", line 1, in 
    ValueError: Invalid format specifier
    

    What am I doing wrong? Is there a better way?

  • markmnl
    markmnl over 10 years
    is there any downside to using datetime.datetime instead of time?
  • markmnl
    markmnl over 10 years
    OK, I see there differences here: stackoverflow.com/questions/7479777/…, datetime is more suited to my needs, thanks!
  • Mad Physicist
    Mad Physicist almost 8 years
    I'm pretty sure the 0: is superfluous for strftime. +1
  • Kieveli
    Kieveli over 4 years
    Try this too: f"{datetime.datetime.now():%Y-%m-%d %H:%M:%S}"
  • falsetru
    falsetru over 4 years
    @Kieveli, The question is tagged python-3.3. f-string syntax is available in Python 3.6+. Another answer already mentioned f-string. :)