What is zip (functional programming?)

后端 未结 5 1161
暗喜
暗喜 2020-11-28 07:58

I recently saw some Clojure or Scala (sorry I\'m not familiar with them) and they did zip on a list or something like that. What is zip and where did it come from ?

5条回答
  •  情深已故
    2020-11-28 08:34

    You could use the following code in Python:

    
    >>> a = [1,2]
    >>> b = [3,4]
    >>> zip(a,b)
    [(1,3),(2,4)]
    

提交回复
热议问题