gpt4 book ai didi

ruby - 为什么我的哈希值打印为字符串?

转载 作者:数据小太阳 更新时间:2023-10-29 07:14:33 31 4
gpt4 key购买 nike

这很奇怪,但我不知道配置什么或在哪里配置。我正在尝试打印一个简单的哈希值,如下所示:

#!/usr/bin/ruby

names = Hash.new
names[1] = "Jane"
names[2] = "Thomas"

puts names

我希望输出是

{1=>"Jane", 2=>"Thomas"}

当我得到

1Jane2Thomas

有什么想法吗?

最佳答案

你应该使用检查。

puts names.inspect
#=> {1=>"Jane", 2=>"Thomas"}

关于ruby - 为什么我的哈希值打印为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11861412/

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