gpt4 book ai didi

python - 从元组转换为字符串,untuplify

转载 作者:行者123 更新时间:2023-12-01 05:16:32 25 4
gpt4 key购买 nike

def untuplify(tpl):
return map(lambda x: str(x), tpl)

我无法获得 untuplify((1, 2, 3, 4, 5)) 的输出,即 12345

最佳答案

使用str.join() :

>>> def untuplify(tpl):
... return "".join(map(str, tpl))
...
>>> untuplify((1,2,3,4))
'1234'
>>>

您获得意外输出的原因是 map() 返回一个列表。 str.join() 是将序列中的字符串连接成单个字符串的规范方法。

关于python - 从元组转换为字符串,untuplify,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23077848/

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