I am developing a login form using flask version 1.0.2 in python 3.6 and HTML in Pycharm IDE but the problem is when i edit python code in app.py file i expect the changes to take effect and when i run on default url, http://127.0.0.1:5000/, it does not show the changes in the browser.The old first output keeps being printed.
I have deleted cache and cookies and browser history from all browsers plus using CNTRL + F5 for hard refresh but the problem has persisted.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'men what are you doing !'
if __name__ == '__main__':
app.run()
What could be the problem?**
app.run(host,port,debug=True)