我想知道如何在python中执行等效的range函数,但是能够指定基数.例如:
countUp(start=0, end=1010, base=2) countUp(start=0, end=101, base=3) countUp(start=0, end=22, base=4)
基数2计数的示例输出:
[0, 1, 10, 11, 100, ...]
是否有一个我缺少的功能呢?或者我该怎么做呢?
你显然把数字与数字的表示混淆了.
一些不具有碱...它的数表示,其具有基极...例如数字在基座2表示为"101"是相同的,与"5"在基体10表示的数目.
该range
函数将计算连续的数字,您可以使用以下内容在任何您喜欢的基数中获取它们的表示:
digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" def int2str(x, base): if x < 0: return "-" + int2str(-x, base) return ("" if x < base else int2str(x//base, base)) + digits[x % base]