Which Flask function is used to start the development server of a Flask application?

  • begin()
  • launch()
  • run()
  • start()
The correct function to start the development server in Flask is run(). This function is typically called at the end of a Flask script to launch the server and make the web application accessible.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *