Answers:
date
和datetime
对象(以及对象time
)都支持一种迷你语言来指定output,并且有两种访问它的方法:
dt.strftime('format here')
; 和'{:format here}'.format(dt)
因此,您的示例可能如下所示:
dt.strftime('%m/%d/%Y')
要么
'{:%m/%d/%Y}'.format(dt)
为了完整起见:您还可以直接访问对象的属性,但随后只能获取数字:
'%s/%s/%s' % (dt.month, dt.day, dt.year)
学习迷你语言所花的时间是值得的。
作为参考,以下是迷你语言中使用的代码:
%a
工作日为语言环境的缩写名称。 %A
工作日为语言环境的全名。 %w
以十进制数表示的工作日,其中0是星期日,6是星期六。%d
以零填充的十进制数字表示月份中的一天。%b
月作为语言环境的缩写名称。%B
月作为语言环境的全名。%m
以零填充的十进制数字表示的月份。01,...,12 %y
无世纪的年份,为零填充的十进制数字。00,...,99 %Y
以世纪作为十进制数字的年份。1970、1988、2001、2013 %H
小时(24小时制),为补零的十进制数字。00,...,23 %I
小时(12小时制),为零填充的十进制数字。01,...,12 %p
相当于AM或PM的语言环境。%M
分钟,为零填充的十进制数字。00,...,59 %S
第二个为零填充的十进制数。00,...,59%f
微秒,十进制数字,在左侧补零。000000,...,999999%z
UTC偏移量,格式为+ HHMM或-HHMM(如果为天真则为空),+ 0000,-0400,+ 1030%Z
时区名称(如果是天真则为空),UTC,EST,CST %j
一年中的一天,为零填充的十进制数字。001,...,366 %U
一年中的星期号(星期日是第一个),以零填充的十进制数表示。%W
一年中的星期数(星期一为第一位),以十进制数表示。%c
语言环境的适当日期和时间表示。 %x
语言环境的适当日期表示形式。 %X
语言环境的适当时间表示形式。 %%
文字“%”字符。type-specific formatting
也可以使用:
t = datetime.datetime(2012, 2, 23, 0, 0)
"{:%m/%d/%Y}".format(t)
输出:
'02/23/2012'
如果您正在寻找一种简单的方式来datetime
进行字符串转换并可以省略格式。您可以将datetime
对象转换为str
,然后使用数组切片。
In [1]: from datetime import datetime
In [2]: now = datetime.now()
In [3]: str(now)
Out[3]: '2019-04-26 18:03:50.941332'
In [5]: str(now)[:10]
Out[5]: '2019-04-26'
In [6]: str(now)[:19]
Out[6]: '2019-04-26 18:03:50'
但是请注意以下几点。如果在这种情况下,AttributeError
当其他解决方案上升时,None
您将收到一个'None'
字符串。
In [9]: str(None)[:19]
Out[9]: 'None'
通过直接使用日期时间对象的组件,可以将日期时间对象转换为字符串。
from datetime import date
myDate = date.today()
#print(myDate) would output 2017-05-23 because that is today
#reassign the myDate variable to myDate = myDate.month
#then you could print(myDate.month) and you would get 5 as an integer
dateStr = str(myDate.month)+ "/" + str(myDate.day) + "/" + str(myDate.year)
# myDate.month is equal to 5 as an integer, i use str() to change it to a
# string I add(+)the "/" so now I have "5/" then myDate.day is 23 as
# an integer i change it to a string with str() and it is added to the "5/"
# to get "5/23" and then I add another "/" now we have "5/23/" next is the
# year which is 2017 as an integer, I use the function str() to change it to
# a string and add it to the rest of the string. Now we have "5/23/2017" as
# a string. The final line prints the string.
print(dateStr)
输出-> 5/23/2017
字符串连接str.join
可以用来构建字符串。
d = datetime.now()
'/'.join(str(x) for x in (d.month, d.day, d.year))
'3/7/2016'
DateTimeField
或DateField
在Django。谢谢