python3中的句子变化

时间:2018-03-05 14:06:18

标签: python python-3.x frameworks pep8 sentence-synthesis

几个月前,我发现了这种语法:

{Hello|Dear} {Customer|client|person},

xxxx

这将产生如下句子:

Hello Customer,

Dear person,

怎么称呼?有没有解析这个的框架?如果没有,我该怎么做?

我打算在构建句子的自动化脚本中使用它。

我还应该使用哪些框架在python中构建句子?当python脚本中嵌入了长文本块时,它会产生丑陋的代码。

1 个答案:

答案 0 :(得分:0)

如果你想随机问候,

import random
greetings = ["hello", "dear"]
print("{} person".format(str(random.choice(greetings))))