gpt4 book ai didi

python - 使用 reversed 函数在 Python 中反转嵌套元组

转载 作者:太空宇宙 更新时间:2023-11-04 07:10:41 25 4
gpt4 key购买 nike

我有一个元组,想用 Python 反转它。

元组看起来像这样:(2, (4, (1, (10, None))))

我尝试通过以下方式在 Python 中进行逆向:

a = (2, (4, (1, (10, None))))
b = reversed(a)

它返回给我:

<reversed object at 0x02C73270>

如何得到a的反转?或者我必须编写一个函数来执行此操作吗?

结果应该是这样的:

((((None, 10), 1), 4), 2)

最佳答案

def my_reverser(x):
try:
x_ = x[::-1]
except TypeError:
return x
else:
return x if len(x) == 1 else tuple(my_reverser(e) for e in x_)

关于python - 使用 reversed 函数在 Python 中反转嵌套元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12564043/

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