DEV Community

Tomi
Tomi

Posted on

Write the Coding of Web Development


@app.route*__*('/')
def hello_world():
return 'Hello, World!'

if name == 'main':
app.run()
This code creates a simple web application with Flask that displays "Hello, World!" when you visit the root URL.

Top comments (0)