This example describes Python's method of implementing string and date conversions. Share to everyone for your reference. The specific analysis is as follows:
The time and datetime functions are used here, respectively.
?
| 1 2 3 4 5 6 7 8 9 10 |
' @author: Jiangqh ' import time,datetime # date to str print time.strftime ("%y-%m-%d%x", Time.localtime ()) #str to D Ate t = time.strptime ("2009-08-08", "%Y-%m-%d") Y,m,d = T[0:3] Print datetime.datetime (y,m,d) |
The output results are:
?
| 1 2 |
2015-05-13 10:43:07 2009-08-08 00:00:00 |
Character:
%a English Week abbreviation
%A English Week's full
%b English Month's abbreviation
%B the full English month
%c Display Local Date time
%d date, take 1-31
%H hours, 0-23
%I Hours, 0-12
%m month, 01-12
%m minutes, 1-59
Days of the day in%j year
%w Show today is the day of the week
%w the first few weeks
%x Day Date
%x local time of day
%y year 00-99
Full spelling of%Y year
I hope this article will help you with your Python programming.