Learn

Using fmt.Println() and fmt.Print() we have the ability to concatenate strings, i.e. combine different strings into a single string:

guess := "C" fmt.Println("Is", guess, "your final answer?") // Prints: Is C your final answer?

With fmt.Printf(), we can interpolate strings, or leave placeholders in a string and use values to fill in the placeholders. Let’s revisit the same example using fmt.Printf():

guess := "C" fmt.Printf("Is %v your final answer?", guess) // Prints: Is C your final answer?

The first argument we provide fmt.Printf() is the string: "Is %v your final answer?". The %v portion is our placeholder and is known as a verb in Go. Verbs are identified by the combination of a % character followed by a letter. The specific letter informs what goes fills in the placeholder, in this case, %v gets the value of "C" from our second argument, guess.

As long as we provide enough arguments, we can even add multiple placeholders:

selection1 := "soup" selection2 := "salad" fmt.Printf("Do I want %v or %v?", selection1, selection2) // Prints: Do I want soup or salad?

Notice that the placement of the arguments matters! If we switched the position of selection1 and selection2, it would print: Do I want salad or soup?.

We’ll go over more verbs in the next exercise, but let’s first practice using fmt.Printf() with %v.

Instructions

1.

Using fmt.Printf(), and the arguments: "Are you a %v or a %v person?", animal1, and animal2 to interpolate the string: "Are you a cat or a dog person?".

Take this course for free

Mini Info Outline Icon
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.

Or sign up using:

Already have an account?