gpt4 book ai didi

python - 在 python 中打印嵌套列表

转载 作者:行者123 更新时间:2023-11-28 22:42:40 24 4
gpt4 key购买 nike

stack = list()
stack = [[u'hello','world'],[u'blue','sky']]

如何在 python 中分别打印 'hello world' 和 'blue sky'?

最佳答案

使用pprint ,这将适用于任何大小和嵌套的数组。

>>> import pprint
>>> stack = list()
>>> stack = [[u'hello','world'],[u'blue','sky']]
>>> pprint.pprint(stack)
[[u'hello', 'world'], [u'blue', 'sky']]
>>>

具体用这个

for s in stack:
print ' '.join(s)

关于python - 在 python 中打印嵌套列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31498205/

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