gpt4 book ai didi

list - Elixir:打印列表以及字符串

转载 作者:行者123 更新时间:2023-12-04 13:07:54 25 4
gpt4 key购买 nike

我想打印一个列表以及一个字符串标识符,例如

list = [1, 2, 3]
IO.puts "list is ", list

这是行不通的。我尝试了一些变化
# this prints only the list, not any strings
IO.inspect list
# using puts which also does not work
IO.puts "list is #{list}"

在javascript中,我可以简单地执行 console.log("list is ", list)。我很困惑如何在 Elixir 中达到同样的效果。

最佳答案

从Elixir 1.4开始, IO.inspect/2 接受label选项among others:

IO.inspect list, label: "The list is"
#⇒ The list is: [1, 2, 3]

关于list - Elixir:打印列表以及字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45523766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com