"
- return f'\n{title}{code}'
\ No newline at end of file
+ return f'\n{title}{code}'
+if __name__ == '__main__':
+ # run() method of Flask class runs the application
+ # on the local development server.
+ app.run(host='127.0.0.1',port=2009)
\ No newline at end of file