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!
我应该如何在字符串中插入一个数字?
如果要始终使用“默认”表示,无论使用什么类型,请使用%v作为in
原文链接:https://www.f2er.com/go/187103.htmlfmt.Sprintf("There are %v reasons to code!",num)