You must be logged in to access this section.
Login/Sign upfrom flask import Flask
app = Flask(__name__)
@app.route("/mainpage")
def mainpage():
return "اولین صفحه ی من"
if __name__ == "__main__":
app.run()
Submitting answers is currently unavailable.
You must be logged in to access this section.
Login/Sign up If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.