Snippets tagged “tuples”
4 snippets use this tag.
- How can I make a dictionary (dict) from separate lists of keys and values?Python
You can use the zip function to create a dictionary from separate lists of keys and values like this:
- How do I iterate through two lists in parallel?Python
You can use the zip() function to iterate through two lists in parallel.
- Using Pairs or 2-tuples in JavaJava
In Java, you can use the javafx.util.Pair class to represent a pair or 2-tuple.
- What's the difference between lists and tuples?Python
Lists and tuples are both used to store multiple items in a single variable, but they are different in a few key ways.