Home  >  Article  >  Backend Development  >  Learning GO: 04

Learning GO: 04

Barbara Streisand
Barbara StreisandOriginal
2024-10-06 16:09:31702browse

Learning GO: 04

Hey! I am Currently learning Go Lang, and I am taking some basic Notes on my Notion and though I'd also just publish them here. They are not well thought out or well written but it's just me taking notes from time to time for my reference.

I am taking the Udemy Course by Maximilian Schwarzmüller,


Notes

We can format the Output Strings with Printf() Method

  • there are different option to add to the output string that can format it
  • here we have %v and n that helped to add the variable value and also with n everything after it will be on next line
  • There are many of these “verbs that we can add to format, check the official docs
  • We can use %.0f to round the floating numbers
  • the number before f refers to the number we wanna show after the .

- so if we say %.2f that will print 2 number after .


fmt.Printf("Future Value : %v\nFuture Value (Adjusted for Inflation): %v", futureValue, futureRealValue)


Storing Formatted strings into a variable

  • using the method Sprintf() we can store any formatted string into a variable and then use that variable instead of whole string

formattedFV := fmt.Sprintf("Future Value : %.0f\n", futureValue)
formattedFRV := fmt.Sprintf("Future Value (Adjusted for Inflation): %0.f\n", futureRealValue)


  • after that we can use the Print() method to print these strings which will just print the string without any formatting

<p>fmt.Print(formattedFV, formattedFRV)</p>




Multi line Strings

  • We can use backticks `` instead of double quotes to create multiline formatted string, this way

`go
fmt.Printf(`Future Value : %v Future Value (Adjusted for Inflation): %v`, futureValue, futureRealValue)
`

The above is the detailed content of Learning GO: 04. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Learning GO: 05Next article:Learning GO: 05