Membuat Hello World dengan Flask
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
Support author
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
Create an account or login to interact with other Reditors.
You can upvote, downvote, and leave a comment on someone's else post.
Join the site where you can also publish articles, news, threads, tutorials, TLDR, web pages, videos, also create your own community to discuss a specific topic.