可以参考下牛客的IO练习,一般用bufio.NewScanner来获取整行输入 input := bufio.NewScanner(os.Stdin) for input.Scan() { data := input.Text() }