Con la ayuda de la time.Now().Weekday()
función, podemos obtener el día de la semana en Golang importando el módulo de tiempo.
Sintaxis:
time.Now().Weekday()
Return: Devuelve el día de la semana actual.
Ejemplo #1: En este ejemplo, podemos ver que al usar time.Now().Weekday()
la función, podemos obtener el día de la semana.
// Golang program to get the current weekday package main // Here "fmt" is formatted IO which // is same as C’s printf and scanf. import "fmt" // importing time module import "time" // Main function func main() { // Using time.Now().Weekday() function. dt := time.Now().Weekday() fmt.Println(dt.String()) }
Producción:
Monday
Ejemplo #2:
// Golang program to get the current weekday package main // Here "fmt" is formatted IO which // is same as C’s printf and scanf. import "fmt" // importing time module import "time" // Main function func main() { // Using time.Now().Weekday() function dt := time.Now().Weekday() fmt.Println(int(dt)) }
Producción:
1
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA