Golang 可以像 Python 那样乘以字符串吗?
Python 可以这样串乘字符:
Python 3.4.3 (default,Mar 26 2015年22:03:40[GCC 4.9.2] on linuxType "help","copyright","credits" or "license" for more information.>>> x = 'my new text is this long'>>> y = '#' * len(x)>>> y'########################'>>>
Golang 能以某 ...