文章目录
Printf
s := "1"
fmt.Printf("%q\n", s) // "1" %q print string with quotes
fmt.Printf("%s\n", s) // 1
A tour of go
阅读 40
2022-04-30
s := "1"
fmt.Printf("%q\n", s) // "1" %q print string with quotes
fmt.Printf("%s\n", s) // 1
相关推荐
精彩评论(0)