datetime オブジェクトの値のリストを作成しました
a=design_list.values_list('date_submitted')
だから私は得る:
[(datetime.datetime(2012, 10, 21, 13, 56, 24),), (datetime.datetime(2012, 10, 21, 10, 33, 58),), etc...
私はそれらをタイムスタンプに変換しようとしています:
timestamps[0] = a[0].strftime("%s")
しかし、私はエラーが発生します:
AttributeError: 'tuple' object has no attribute 'strftime'
誰が私が間違っているのか教えてもらえますか?