Skip to main content

A tool for conversion numbers from one base to another

Project description

# python-radix

Python-radix library

The library contains tools for conversion numbers to a new base. Current version works with radixes from 2 to 36.

Python-radix usage examples

Python-radix has both procedural and object-oriented solutions.

Procedural way example

# to convert number 4 from base 10 to base 2

cast(4, 10, 2)

>>’100’

You can use both str and int types for the number you convert.

Object oriented way example

# create an object to convert numbers from one base to another (here it converts from base 10 to base 2)

new = Converter(10, 2)

new.convert(4)

>>’100’

This will work too:

new = Converter(10, 2)

new.convert(‘4’)

>>’100’

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

python-radix-0.1.1.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

python_radix-0.1.1-py2.py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 2 Python 3

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