Python zip(): Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Python Language Functions =Overview= <code>zip()</code> "pairs" up the elements of a number of lists, tuples or other sequences to create a list of tuples.")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Python_Language_Functions#zip()|Python Language Functions]]
* [[Python_Language_Functions#zip|Python Language Functions]]
 
=Overview=
=Overview=
<code>zip()</code> "pairs" up the elements of a number of lists, tuples or other sequences to create a list of tuples.
<code>zip()</code> "pairs" up the elements of a number of lists, tuples or other sequences to create a list of tuples.

Revision as of 17:20, 17 May 2024

Internal

Overview

zip() "pairs" up the elements of a number of lists, tuples or other sequences to create a list of tuples.