go语言把int转为字符串的方法:【fmt.Println(strconv.Itoa(100))】。如果要把字符串转为整形,可以使用【i, _ := strconv.Atoi("100") fmt.Println(i)】