Pythondatetime module format time with Strftime? Python Three great artifacts this is the last article
#!usr/bin/python import datetime datetime.datetime.now() |
This will return to microsecond. So this is what we don't need. So we have to make a change.
datetime.datetime.now().strftime( "%Y-%m-%d %H:%M:%S" ) |
After formatting, we have a common format.
Attached: strftime parameters
Strftime (format[, tuple]), string
Outputs the specified Struct_time (default current time), based on the specified formatted string
Python format symbols in time Date:
%y Two-digit year representation (00-99)
%Y Four-digit year representation (000-9999)
%m Month (01-12)
One day in%d months (0-31)
%H 24-hour hours (0-23)
%I 12-hour hours (01-12)
%M minutes (00=59)
%s seconds (00-59)
%a Local Simplified Week name
%A Local Full week name
%b a locally simplified month name
%B Local Full month name
%c Local corresponding date representation and time representation
%j Day of the Year (001-366)
%p the equivalent of a local a.m. or p.m.
%u weeks of the year (00-53) Sunday is the beginning of the week
%w Week (0-6), Sunday for the beginning of the week
%W Week of the Year (00-53) Monday is the beginning of the week
%x Local corresponding date representation
%x Local corresponding time representation
%Z the name of the current time zone
Percent% of the number itself
Source: http://www.ziqiangxuetang.com/python/datetime_strftime.html
Null
Python datetime module format time with strftime