Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 299 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 299 Bytes

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]