var i = 200 var str = "Hello" str = str + "World" str = "\(str),asdhjdh,\(i)" print(str) 输入后果 HelloWorld,asdhjdh,200 请按任意键持续. . .