gpt4 book ai didi

python - 将整数列表转换为字符串

转载 作者:太空狗 更新时间:2023-10-29 20:33:01 25 4
gpt4 key购买 nike

我想将我的整数列表转换为字符串。以下是我如何创建整数列表:

new = [0] * 6
for i in range(6):
new[i] = random.randint(0,10)

像这样:

new == [1,2,3,4,5,6]
output == '123456'

最佳答案

Convert a list of characters into a string你可以做

''.join(map(str,new))

关于python - 将整数列表转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26979266/

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