println.([1,2,3])
为什么输出是:
1
2
3
3-element Vector{Nothing}:
nothing
nothing
nothing
而不是预期的:
1
2
3
1
2
3
就是你想要的输出
3-element Vector{Nothing}:
nothing
nothing
nothing
是display(println.([1, 2, 3]))
的输出。
在REPL中每一步都会自动display
,如果写到文件里执行就不会出现后面多余的部分。
3 个赞