试图了解笔记本输出单元格中的输出

Trying to understand the output in notebook out cell

我不明白 out 单元格的意义。这似乎是一个字符数?!有什么办法可以完全摆脱这种情况?

screenshot here

我正在使用 gophernotes(golang 笔记本)

这实际上是意料之中的。在 official documentation 它说

Println formats using the default formats for its operands and writes to standard output. Spaces are always added between operands and a newline is appended. It returns the number of bytes written and any write error encountered.

因此,您看到的是实际输出,后跟字节数和错误,在您的情况下只是 nil(没有预期的错误)。