import
日付時刻
データベース で時間を節約するために私のdjangoビューで
と
now = datetime.datetime.now()
その値をデータベースに保存すると、次のようなものが返されます
2013-04-28 22:54:30.223113
どうすれば削除できますか
2013-04-28 22:54:30.223113 からの 223113
一部、これを行う方法を提案してください...
設定しmicrosecond=0
ます。しかし、ドキュメントでこの機能を見つけることができません。
>>> now = datetime.datetime.now().replace(microsecond=0)
>>> print now
2013-04-29 12:47:28
あなたはこのようにすることができます:
import datetime
n = datetime.datetime.now() # you'll get the datetime you already have
n.strftime("%d/%m/%y %H:%M:%S")
# Now you have the string of the datatime with the format
# day/month/year hour:minute:seconde
このセクションのセクションを見てください: http://docs.python.org/2/library/datetime.html#datetime.datetime.strftime
楽しむ !