次のコードを書いたところ、現在の時刻が formatdatetime.datetime.('current date and time')
で出力されますが、出力はdatetime('current date and time')
.
前の「日時」を削除したいのですが、「分割」で試してみましたが、機能せず、次のエラーが発生します "datetime.datetime' object has no attribute 'split"
。
Pythonでそれを行う方法を知っている人はいますか?
前もって感謝します。
{
from datetime import datetime
test = datetime.now()
test.split('.')[0]
}