The Python snippet collection contains helper functions for Python 3.6. It includes utilities for most common data types, such as primitivies, lists, dictionaries and date objects.
Merges two or more lists into a list of lists, combining elements from each of the input lists based on their positions.
Python, List · Nov 2, 2020
Learn the difference between Python's built-in list sorting methods and when one is preferred over the other.
Python, List · Jun 12, 2021
Writing efficient Python code can be tricky. Read how we optimize our list snippets to increase performance using a couple of simple tricks.
Python, List · Nov 7, 2021
There's a good way to test the emptiness of a Python list and a better one. Which one are you using?
Python, List · Jan 15, 2023
Sorts one list based on another list containing the desired indexes.
Python, List · Nov 2, 2020
Python's f-strings can do a lot more than you might expect. Learn a few useful tips and tricks in this quick guide.
Python, String · Jul 20, 2021
Inverts a dictionary with non-unique hashable values.
Python, Dictionary · Nov 2, 2020
Groups the elements of a list based on the given function and returns the count of elements in each group.
Python, List · Nov 2, 2020
Creates a list of dates between start
(inclusive) and end
(not inclusive).
Python, Date · Jan 7, 2021
Combines two or more dictionaries, creating a list of values for each key.
Python, Dictionary · Apr 4, 2021
Creates a list with the non-unique values filtered out.
Python, List · Nov 2, 2020
Creates a list with the unique values filtered out.
Python, List · Nov 2, 2020
Groups the elements of a list based on the given function.
Python, List · Nov 2, 2020
Converts a hexadecimal color code to a tuple of integers corresponding to its RGB components.
Python, String · Sep 15, 2020
Builds a list, using an iterator function and an initial seed value.
Python, Function · Nov 2, 2020