文件名称:基本转换器
文件大小:5KB
文件格式:ZIP
更新时间:2024-03-09 01:26:01
Python
描述 baseXtoY是一个简单的多基转换器。 它支持从1到36的基数转换。数字包含从1到9以及从A到Z的字符。请注意, baseXtoY不区分大小写。 用法 >>> import baseXtoY >>> baseXtoY.license() --> displays license baseXtoY.baseXtoY(num, **X, **Y) --> converts num from base X to base Y # X and Y are keywords arguments # example: >>> baseXtoY.baseXtoY('FF', X=16, Y=10) # will work 255 >>> baseXtoY.baseXtoY('FF', 16, 10) # will not work since X and Y are not posi
【文件预览】:
base-converter-rolling
----LICENSE(2KB)
----baseXtoY()
--------main.py(3KB)
--------__init__.py(49B)
--------number.py(2KB)
--------__main__.py(27B)
----setup.py(672B)
----README.md(699B)