/python_listhelpers

A collection of list helpers for Python 3

Primary LanguagePythonMIT LicenseMIT

A set of various list helpers

Install instructions

Install via pip

$ pip install python_listhelpers

Quick Usage

>>> from listhelpers import *

>>> listify('hello world')
['hello world']
>>> listify(['hello world'])
['hello world']
>>> listify(33)
[33]