Whenever I am trying to visit 'http://127.0.0.1:5000/welcome' I am supposed to get 'Welcome to flask tuitorial' but I am getting 'The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.' if trying visit 'http://127.0.0.1:5000/', I am getting 'Hello World'. I didnt write any route method for that. That hello_world program I had done long back ago. Still why its coming I don't know. Today my project is different and my program as well different but still I am getting same o/p.
from flask import Flask
app = Flask(__name__)
@app.route('/welcome')
def hello_world():
return 'Welcome to flask tuitorial'
if __name__ == '__main__':
app.run(debug = True)