在python中以特殊格式打印文件中的列表

发布于 2024-09-29 22:25:00 字数 387 浏览 2 评论 0原文

我有一个很大的列表列表,例如:

X = [['a','b','c','d','e','f'],['c','f','r'],['r','h','l','m'],['v'],['g','j']]

每个内部列表都是一个句子,这些列表的成员实际上是这个句子的单词。我想将此列表写入一个文件中,以便每个句子(内部列表)位于单独的文件中文件中的行,每行都有一个数字,对应于大 this 中这个内部列表(句子)的位置。在上述情况下。我希望输出看起来像这样:

1. a b c d e f
2. c f r
3. r h l m
4.v
5.g j

我需要将它们以这种格式写入“文本”文件中。谁能建议我用 python 编写它的代码? 谢谢

I have a large list of lists like:

X = [['a','b','c','d','e','f'],['c','f','r'],['r','h','l','m'],['v'],['g','j']]

each inner list is a sentence and the members of these lists are actually the word of this sentences.I want to write this list in a file such that each sentence(inner list) is in a separate line in the file, and each line has a number corresponding to the placement of this inner list(sentence) in the large this. In the case above. I want the output to look like this:

1. a b c d e f
2. c f r
3. r h l m
4.v
5.g j

I need them to be written in this format in a "text" file. Can anyone suggest me a code for it in python?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝海似她心 2024-10-06 22:25:00
with open('somefile.txt', 'w') as fp:
  for i, s in enumerate(X):
    print >>fp, '%d. %s' % (i + 1, ' '.join(s))
with open('somefile.txt', 'w') as fp:
  for i, s in enumerate(X):
    print >>fp, '%d. %s' % (i + 1, ' '.join(s))
凉城已无爱 2024-10-06 22:25:00
with open('file.txt', 'w') as f:
    i=1
    for row in X:
        f.write('%d. %s'%(i, ' '.join(row)))
        i+=1
with open('file.txt', 'w') as f:
    i=1
    for row in X:
        f.write('%d. %s'%(i, ' '.join(row)))
        i+=1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文