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’

Supported by

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