回答:
strftimeを使用して、日付をフォーマットすることができます。
例えば、
import datetime
t = datetime.datetime(2012, 2, 23, 0, 0)
t.strftime('%m/%d/%Y')
生成されます:
'02/23/2012'
t = datetime.datetime.now()
現在の日付を使用するために使用
date
そして、datetime
オブジェクト(とtime
同様)をサポート出力を指定するには、ミニ言語を、アクセス、それには2つの方法があります。
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
10進数としての曜日。0は日曜日、6は土曜日です。%d
ゼロが埋め込まれた10進数としての月の日。%b
ロケールの省略名としての月。%B
ロケールのフルネームとしての月。%m
ゼロが埋め込まれた10進数としての月。01、...、12 %y
ゼロ詰めの10進数としての世紀のない年。00、...、99 %Y
10進数としての世紀を含む年。1970、1988、2001、2013 %H
ゼロが埋め込まれた10進数としての時間(24時間制)。00、...、23 %I
ゼロが埋め込まれた10進数としての時間(12時間時計)。01、...、12 %p
AMまたはPMのいずれかに相当するロケール。%M
ゼロ詰めの10進数としての分。00、...、59 %S
ゼロ詰めの10進数としての秒。00、...、59%f
左側にゼロが埋め込まれた10進数としてのマイクロ秒。000000、...、999999%z
+ HHMMまたは-HHMM(ナイーブの場合は空)、+ 0000、-0400、+ 1030の形式のUTCオフセット%Z
タイムゾーン名(ナイーブの場合は空)、UTC、EST、CST %j
ゼロが埋め込まれた10進数としての年間通算日。001、...、366 %U
ゼロが埋め込まれた10進数としての年間通算週数(日曜日が最初)。%W
10進数としての年の週番号(月曜日が最初)。%c
ロケールの適切な日付と時刻の表現。 %x
ロケールの適切な日付表現。 %X
ロケールの適切な時間表現。 %%
リテラル '%'文字。別のオプション:
import datetime
now=datetime.datetime.now()
now.isoformat()
# ouptut --> '2016-03-09T08:18:20.860968'
datetime.datetime.now().ctime()
==>'Wed Sep 4 13:12:39 2019'
簡単な文字列フォーマット方法を使用できます:
>>> dt = datetime.datetime(2012, 2, 23, 0, 0)
>>> '{0.month}/{0.day}/{0.year}'.format(dt)
'2/23/2012'
>>> '%s/%s/%s' % (dt.month, dt.day, dt.year)
'2/23/2012'
'{:%Y-%m-%d %H:%M}'.format(datetime(2001, 2, 3, 4, 5))
。詳しくはpyformat.infoをご覧ください
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)
出力-> 2017年5月23日
DateTimeField
またはDateField
ジャンゴで非常に便利です。ありがとう