> typeof(rates[[5]])
[1] "list"
> typeof(rates[[6]])
[1] "list"
x <- rates[5:6]
> paste("$",x[[1]],"$",x[[2]],sep=" "); dput(x)
[1] "$ 1:2 $ c(2, 1, 1)"
list(list(1:2), list(c(2L, 1L, 1L)))
请注意我的粘贴中的费率[[5]]会发生什么变化。我不明白为什么它不采用c(1,2)格式。
编辑:
pytz