time.Seconds() Function in Golang With Examples Last Updated : 21 Apr, 2020 Comments Improve Suggest changes Like Article Like Report In Go language, time packages supplies functionality for determining as well as viewing time. The Seconds() function in Go language is used to find the duration of time in the form of a floating-point number of seconds. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use these functions. Syntax: func (d Duration) Seconds() float64 Here, d is the duration of time. Return value: It returns the duration value as float64. Example 1: C // Golang program to illustrate the usage of // Seconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration // of Seconds method sec, _ := time.ParseDuration("7m") // Prints duration as a // floating point number fmt.Printf("Only %.1f seconds of "+ "task is remaining.", sec.Seconds()) } Output: Only 420.0 seconds of task is remaining. Example 2: C // Golang program to illustrate the usage of // Seconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration // of Seconds method sec, _ := time.ParseDuration("3h8m756s6576.587ns") // Prints duration as a // floating point number fmt.Printf("Only %.1f seconds of "+ "task is remaining.", sec.Seconds()) } Output: Only 12036.0 seconds of task is remaining. Comment More infoAdvertise with us Next Article time.Seconds() Function in Golang With Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Nanoseconds() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Nanoseconds() function in Go language is used to find the duration of time in form of an integer nanosecond count. Moreover, this function is defined under the time package. Here, you need to import the 2 min read time.Milliseconds() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Milliseconds() function in Go language is used to find the duration of time in form of an integer millisecond count. Moreover, this function is defined under the time package. Here, you need to import t 2 min read time.Microseconds() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Microseconds() function in Go language is used to find the duration of time in form of an integer microsecond count. Moreover, this function is defined under the time package. Here, you need to import t 2 min read time.Time.Second() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Second() function in Go language is used to find the second offset within the minute as provided by "t" and the range is [0, 59]. Moreover, this function is defined under the time package. Here, yo 2 min read time.Round() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Round() function in Go language is used to find the outcome of rounding the stated duration 'd' to the closest multiple of 'm' duration. Here, the rounding manner for middle values is to round far off f 2 min read Like