几个月前,我发现了这种语法:
{Hello|Dear} {Customer|client|person},
xxxx
这将产生如下句子:
Hello Customer,
或
Dear person,
怎么称呼?有没有解析这个的框架?如果没有,我该怎么做?
我打算在构建句子的自动化脚本中使用它。
我还应该使用哪些框架在python中构建句子?当python脚本中嵌入了长文本块时,它会产生丑陋的代码。
答案 0 :(得分:0)
如果你想随机问候,
import random
greetings = ["hello", "dear"]
print("{} person".format(str(random.choice(greetings))))