from flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "Welcome to Techsteppers.com, We are the technology lovers, we like everything computing and programming for the welfare of the society"
if __name__ == "__main__":</code></p>
app.run(debug=True)