HOME/Articles/

mysql example pythonProject pythonProject (snippet)

Article Outline

Python mysql example 'pythonProject pythonProject'

Functions in program:

  • def hello_world():

python pythonProject pythonProject

Python mysql example: pythonProject pythonProject

from flask import Flask

app = Flask(__name__)


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


if __name__ == '__main__':
    app.run()