- This package helps you to convert decimal numbers to other numeral system representations.
- File named "conv.py" has all the functions that do so.
pip install dkconverters==1.0.0
from dkconverter import convFor your reference info on functions used are added to readme and an Example Code is also added for reference.
from dkconverter import conv
help(conv)
print(conv.bina(10))
print(conv.octl(10))
print(conv.hexdcml(10))