Python Program to Implement Flask Library || Python
In this we are going to see a basic program to implement flask library in Python Programming Language.



from flask import Flask
app = Flask(__name__)


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


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

# Coded by Shreya Idate


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post