文字列「20091229050936」を「05:09 29 December 2009 (UTC)」に変換しようとしています
>>>import time
>>>s = time.strptime("20091229050936", "%Y%m%d%H%M%S")
>>>print s.strftime('%H:%M %d %B %Y (UTC)')
与える
AttributeError: 'time.struct_time' object has no attribute 'strftime'
明らかに、私は間違いを犯しました: 時間が間違っています。これは datetime オブジェクトです! 日付と時刻のコンポーネントがあります。
>>>import datetime
>>>s = datetime.strptime("20091229050936", "%Y%m%d%H%M%S")
与える
AttributeError: 'module' object has no attribute 'strptime'
文字列をフォーマットされた日付文字列に変換するにはどうすればよいですか?