以下代码
package main
import (
"fmt"
)
func main() {
fmt.Println(say(9))
}
func say(num int)(total string){
return fmt.Sprintf("There are %s reasons to code!", num)
产生以下输出
There are %!s(int=9) reasons to code!
我的问题
我应该怎么做才能在字符串中插入一个数字?
米脂
相关分类