基本转换器 源码
描述 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.zip
(预估有个7文件)
base-converter-rolling
LICENSE
2KB
baseXtoY
main.py
3KB
__init__.py
49B
number.py
2KB
__main__.py
27B
setup.py
672B
README.md
699B
暂无评论