如何将时间打印为这种格式?
23:44:22.184320
我尝试过的是
func main() {
// Which will print to the current time
fmt.Println(time.Now())
// How do I convert to
// 23:44:22.184320
}
我已经检查了此链接,但是我不知道该怎么做https://gobyexample.com/time-formatting-parsing
谢谢!
答案 0 :(得分:2)
改为使用此:
time.Now().Format("15:04:05.999999")
请注意,time
软件包的时间布局为:
Mon Jan 2 15:04:05 MST 2006