> i=['John','10','A'] >>> t="{:>> t.format(*i) -6ren">
gpt4 book ai didi

python - 如何以 python 字符串格式传递整个列表?

转载 作者:太空宇宙 更新时间:2023-11-03 13:27:03 26 4
gpt4 key购买 nike

有什么办法可以将整个列表以python字符串格式传递

i=['John','10','A']

t="{:<10}| {:<10}| {:<10}"
print t.format("Name","Age","Grade")
# print t.format(i[0],i[1],i[2])
print t.format(i)

我不想传递单个列表值,而是想传递整个列表print t.format(['John','10','A']) 但这会返回 IndexError: tuple index out of range。有什么办法吗?

最佳答案

只需解压列表:

>>> i=['John','10','A']
>>> t="{:<10}| {:<10}| {:<10}"
>>> t.format(*i)
'John | 10 | A '

关于python - 如何以 python 字符串格式传递整个列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53532198/

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