[Nomad Coin] Tour of Go - #3.3 fmt
#3.3 fmt fmt package는 data를 format할 수 있게 해준다. 가끔 string을 binary로 바꿔야 할 때가 있고, 그 반대의 경우도 있다. package main import "fmt" func main() { x := 405940594059 fmt.Printf("%b\n", x)// 1011110100000111111000111100101100010111 fmt.Printf("%o\n", x)// 5720374362613 fmt.Printf("%x\n", x)// 5E83F1E58B fmt.Printf("%U\n", x)// U+5E83F1E58B } Printf는 format과 함께 print하는 것이다. format과 value를 받는다. 단순히 콘솔에 print하기 위해서..
Go/Blockchain
2022. 7. 10. 20:02