我的目标是使用Jinja模板生成一些数学问题。
template.j2看起来像:
How many different numbers greater than {{ num1 }} and smaller
than {{ num2 }} with all different digits can we make using digits
{{ digit1 }} {{ digit2 }} and {{ digit3 }}.
基本上这是我的高级步骤
json.load(parameters_file)
env =
jinja2.Environment(loader=jinja2.FileSystemLoader(searchpath="."),
trim_blocks=True,
lstrip_blocks=True)
template = env.get_template(template_file)
result = template.render(parameter)
不是使用具有以下内容的json文件渲染模板 num *和digit *,我想使用随机数,以便 我可以完全省略使用.json文件。