gpt4 book ai didi

python - 打印列表的制表符分隔值

转载 作者:IT老高 更新时间:2023-10-28 22:09:59 25 4
gpt4 key购买 nike

这是我当前的代码:

print(list[0], list[1], list[2], list[3], list[4], sep = '\t')

我想写得更好。但是

print('\t'.join(list))

不起作用,因为列表元素可能是数字、其他列表等,所以 join 会提示。

最佳答案

print(*list, sep='\t')

请注意,您不应该使用单词 list 作为变量名,因为它是内置类型的名称。

关于python - 打印列表的制表符分隔值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4048964/

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