描述 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