Google News
logo
Flask - Interview Questions
What do you mean by template engines in the Flask framework?
A template is a file that contains two types of data, i.e., static and dynamic. Dynamic data in a template is populated during run time. Flask makes use of Jinja2 template engine to let developers create HTML templates with placeholders for dynamic data.
 
These placeholders can be filled during run time by using Flask’s render_template method with required parameters and values.
Advertisement