En el lenguaje Go, el paquete fmt implementa E/S formateadas con funciones análogas a las funciones printf() y scanf() de C. La función fmt.print() en los formatos de lenguaje Go usando los formatos predeterminados para sus operandos y escribe en la salida estándar. Aquí se agregan espacios entre operandos cuando no se usa ninguna string como parámetro. Además, esta función está definida en el paquete fmt. Aquí, debe importar el paquete «fmt» para usar estas funciones.
Sintaxis:
func Print(a ...interface{}) (n int, err error)
Aquí, “una …interfaz{}” que contiene algunas strings y variables constantes declaradas.
Valor devuelto: Devuelve el número de bytes escritos y cualquier error de escritura encontrado.
Ejemplo 1:
// Golang program to illustrate the usage of // fmt.print() function // Including the main package package main // Importing fmt import ( "fmt" ) // Calling main func main() { // Declaring some const variables const name, dept = "GeeksforGeeks", "CS" // Calling print() function fmt.Print(name, " is a ", dept, " portal.\n") // It is conventional not to worry about any // error returned by Print. }
Producción:
GeeksforGeeks is a CS portal.
Ejemplo 2:
// Golang program to illustrate the usage of // fmt.print() function // Including the main package package main // Importing fmt import ( "fmt" ) // Calling main func main() { // Declaring some const variables const str1, str2, str3 = "a", "b", "c" // Calling print() function fmt.Print(str1, str2, str3, "\n") // It is conventional not to worry about any // error returned by Print. }
Producción:
abc
En el código anterior, las variables constantes utilizadas son strings, por lo tanto, no se agregan espacios entre dos strings que se muestran arriba en la salida.
Ejemplo 3:
// Golang program to illustrate the usage of // fmt.print() function // Including the main package package main // Importing fmt import ( "fmt" ) // Calling main func main() { // Declaring some const variables const num1, num2, num3 = 5, 15, 15 // Calling print() function fmt.Print(num1, num2, num3, "\n") // It is conventional not to worry about any // error returned by Print. }
Producción:
5 15 15
En el código anterior, las variables constantes utilizadas son números, por lo tanto, se agregan espacios entre dos números que se muestran arriba en la salida.
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA