A port of the infamous left-pad npm package
Project description
leftpad
Left pad a string in Python.
Created to try out creating a pip
package and uploading it to the Python Package Index (PyPI).
Inspired by the left-pad
package on npm which broke parts of the internet.
Install
pip install leftpad
Usage
from leftpad import left_pad
left_pad("foo", 5)
// => " foo"
left_pad("foobar", 6)
// => "foobar"
left_pad(1, 2, '0')
// => "01"
left_pad(17, 5, 0)
// => "00017"
Testing
Run python -m doctest leftpad.py
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
leftpad-0.1.1.tar.gz
(1.5 kB
view hashes)