为了账号安全,请及时绑定邮箱和手机立即绑定

如何在字符串中插入数字

如何在字符串中插入数字

Go
慕勒3428872 2021-07-16 18:19:54
以下代码package mainimport (    "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!我的问题我应该怎么做才能在字符串中插入一个数字?
查看完整描述

3 回答

?
米脂

TA贡献1836条经验 获得超3个赞

如果您想始终使用任何类型的“默认”表示形式,请使用%vas in

fmt.Sprintf("There are %v reasons to code!", num)


查看完整回答
反对 回复 2021-07-19
  • 3 回答
  • 0 关注
  • 253 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信