Ive been trying to make a web server and I have the code down that should be able to get it running but when I go in to the Command Prompt and type python app.py
it doesn't run when it should this is the code that I have
from flask import Flask
app = Flask(__name__)
@app.route("/")
def main():
return "Welcome to my Flask page"
if __name__ == "__main__":
app.run(debug = True, host = "0.0.0.0", port=80)```
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…