Swift Dictionary不打印键值

时间:2015-04-08 07:39:25

标签: swift swift-playground

我是快速编程的新手。我编写了以下用于迭代和打印字典的代码

var items_price = [
"milk": 1 ,
"bread" : 3,
"egg" : 2
]

for (myKey, myValue) in items_price {
      println ("\(myKey) costs : \(myValue)")
}

此代码不会将结果打印为“牛奶成本:1”等。有什么问题?

1 个答案:

答案 0 :(得分:3)

println语句在游乐场的时间轴上打印。按打印语句行末尾的圆圈中的“+”。 enter image description here