Pythonで日付文字列をdatetime
オブジェクトに変換する方法はたくさんありますが、それ以外の方法でやりたいのです。
私が持っている
datetime.datetime(2012, 2, 23, 0, 0)
そしてそれを'2/23/2012'
のような文字列に変換したいのです。
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
0で埋められた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
UTCオフセット、+ 0000、-0400、+ 1030%Z
タイムゾーン名(単純な場合は空)、UTC、EST、CST%j
0で埋められた10進数としての年間通算日。 001、...、366%U
0で埋められた10進数としての年の週番号(日曜日が最初です)。%W
10進数で表した年の週番号(月曜日が最初)。%c
ロケールの適切な日時表現。%x
ロケールの適切な日付表現。%X
ロケールの適切な時間表現.%%
リテラル '%'文字。別のオプション:
import datetime
now=datetime.datetime.now()
now.isoformat()
# ouptut --> '2016-03-09T08:18:20.860968'
単純な文字列フォーマット方法を使うことができます:
>>> 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'
type-specific formatting
も使用できます。
t = datetime.datetime(2012, 2, 23, 0, 0)
"{:%m/%d/%Y}".format(t)
出力:
'02/23/2012'
文字列連結str.join
を使用して文字列を構築できます。
d = datetime.now()
'/'.join(str(x) for x in (d.month, d.day, d.year))
'3/7/2016'
Datetimeを文字列に変換することができます。
published_at = "{}".format(self.published_at)
Datetimeオブジェクトのコンポーネントを直接操作して、datetimeオブジェクトを文字列に変換することは可能です。
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
時間も必要な場合は、
datetime.datetime.now().__str__()
コンソールで2019-07-11 19:36:31.118766
を印刷します
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'