About:
This is Sandeep webpage and described about it. S is sensible, A is Ambitious, N is Nice, D is Decent, E is Excellent, E is Enthusiastic, P is Prudent etc.
Program code:-
app.py:-
from flask import Flask, render_template
app= Flask(__name__)
@app.route("/")
def home ():
return render_template("home.html")
if __name__ == "__main__":
app.run(debug=True)
0 Comments