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.
Python, List
Merges two or more lists into a list of lists, combining elements from each of the input lists based on their positions.
Python, List
There's a good way to test the emptiness of a Python list and a better one. Which one are you using?
Learn the difference between Python's built-in list sorting methods and when one is preferred over the other.
Writing short, efficient Python code is not always straightforward. Read how we optimize our list snippets to increase performance using a couple of simple tricks.
Python, List
Groups the elements of a list based on the given function and returns the count of elements in each group.
Python, List
Sorts one list based on another list containing the desired indexes.
Python, Function
Builds a list, using an iterator function and an initial seed value.
Python, List
Splits values into two groups, based on the result of the given filtering function.
Python, List
Creates a list with the non-unique values filtered out.
Python, List
Creates a list with the unique values filtered out.
Python, List
Groups the elements of a list based on the given function.
Python, List
Randomizes the order of the values of an list, returning a new list.
Python, List
Maps the values of a list to a dictionary using a function.
Python, List
Returns the difference between two lists, after applying the provided function to each list element of both.
Python, Dictionary
Retrieves the value of the nested key indicated by the given selector list from a dictionary or list.