/baseConverter

A simple base converter class in python.

Primary LanguagePythonMIT LicenseMIT

baseConverter:

  • A simple base converter class.

Usage:

app = BaseConverter()
result = app.convert(number, FromBase, ToBase)
print(result)

Example:

app = BaseConverter()
result = app.convert(1519, 10, 2)
print(result)