我编写了以下代码,它以格式输出当前时间datetime.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]
}