从保存在二维列表中的三元组单词构造句子

Structure sentences from words of triplets saved in a 2D list

我目前有一个文本,其单词在二维列表中保存为三元组。

目前的代码:

with open(r'c:\python_TRIPLETS\Sample.txt', 'r') as file:
    data = file.read().replace('\n', '').split()
    lines = [data[i:i + 3] for i in range(0, len(data), 3)]
print(lines)

我的二维列表:

[['Python', 'is', 'an'], ['interpreted,', 'high-level', 'and'], ['general-purpose', 'programming', 'language.'], ["Python's", 'design', 'philosophy'], ['emphasizes', 'code', 'readability'], ['with', 'its', 'notable'], ['use', 'of', 'significant'], ['whitespace.', 'Its', 'language'], ['constructs', 'and', 'object-oriented'], ['approach', 'aim', 'to'], ['help', 'programmers', 'write'], ['clear,', 'logical', 'code'], ['for', 'small', 'and'], ['large-scale', 'projects.']]

我想创建一个 Python 代码,它随机选择一组这些三元组,然后尝试通过使用最后 2 个单词并选择以这两个单词开头的三元组来创建新的随机文本。最后,我的程序在写完 200 个单词或 none 可以选择其他三元组时结束。

有什么想法吗?

随机抽取三胞胎:

import random

triplet = random.choice(lines)
last_two = triplet[1:3]

接下来继续采摘:

while True:
    candidates = [t for t in lines if t[0:2] == last_two]
    if not candidates:
        break

    triplet = random.choice(candidates)
    last_two = triplet[1:3]

我会把输出的保存和长度停止标准留给你。