gpt4 book ai didi

python - 在具有可 rebase 数的 python 中向上计数

转载 作者:太空狗 更新时间:2023-10-29 20:53:43 26 4
gpt4 key购买 nike

我想知道如何在 python 中执行与范围函数等效的操作,但能够指定基数。例如:

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, ...]

我是否缺少执行此操作的功能?或者我可以做什么?

最佳答案

您显然混淆了数字和数字的表示。

数字没有基数...它是有基数的表示...例如表示为“101”的数字在基数 2 中与表示的数字相同以 10 为基数的“5”。

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]

关于python - 在具有可 rebase 数的 python 中向上计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34030873/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com