Skip to main content

Pad a string to the left with any number of characters

Project description

Pad a string to the left with any number of characters

pip install left-pad

Then

>>> from left_pad import left_pad
>>> s = "abc"
>>> left_pad(s, 2, "+")
'++abc'

Make sure to add left-pad to your dependencies in your next project.

Or, if you want to reinvent the wheel, go ahead and try to do it with the standard library

>>> s.rjust(len(s) + 2, '+')
'++abc'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

left-pad-0.0.3.tar.gz (1.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page