Hello World!

In this lesson, we will build our first Flask application! Hurrah!

Initial set-up for Flask

To run a Flask application on Educative, we do not need to set up anything. All code will run inside the special environment within the browser. It’s as easy as that!

Educative is designed in such a way that we do not get distracted by dependencies and get right into what is essential: the learning.

Writing our first application

The simplest Flask application can be made using only one script! Let us call this file app.py. We will break down the program into steps and discuss one.

Step 1:

...