说我有两个名单,想要对它们做出决定;第一个将成为键,第二个将成为值:
a = ['a', 'b', 'c']
b = ['foo', 'bar', 'baz']
dict = { 'a':'foo', 'b':'bar', 'c': 'baz' }
如何在Viml脚本语言中完成此操作? 有什么功能像python中的zip()来实现这个吗?
答案 0 :(得分:2)
你必须自己使用手动循环来实现这种拉链功能。
例如:
function! lh#list#zip_as_dict(l1, l2) abort
if len(a:l1) != len(a:l2)
throw "Zip operation cannot be performed on lists of different sizes"
endif
let res = {}
let idx = range(0, len(a:l1)-1)
for i in idx
let res[a:l1[i]] = a:l2[i]
endfor
return res
endfunction