我有一个看起来像的 list
[["a","b","c","d"],["e","f","g","h"],["i","j","k","l"]]
如何将列表列表转换为看起来像这样的文本文件
a b c d
e f g h
i j k l
它看起来很简单,但是网络上的解决方案都不是简洁明了的,足以使像我这样的傻瓜无法理解。
谢谢!
最佳答案
发布只是为了突出您需要采取的步骤
l = [['a','b','c','d'], ['e', 'f', 'g', 'h'], ['i', 'j', 'k', 'l']]
with open('my_file.txt', 'w') as f:
for sub_list in l:
for elem in sub_list:
f.write(elem + ' ')
f.write('\n')
关于python - 通过python将列表列表写入COLUMNED .txt文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48922334/