在 Python 中,我可以声明一个变量为d ='/some/dir/%s',然后%s用任何值替换为
>>> d = '/some/dir/%s'
>>> d % "hello"
'/some/dir/hello'
是否可以在 Go 中做同样的事情?如果是这样,如何?
萧十郎
相关分类