
작성한 코드 및 에러 메세지
오from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'This is Home!'
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
C:\Users\reaso\Desktop\sparta\projects\prac\venv\venv\Scripts\python.exe C:/Users/reaso/Desktop/sparta/projects/prac/venv/venv/app.py
* Serving Flask app 'app'
* Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:5000
* Running on http://125.135.205.140:5000
Press CTRL+C to quit
* Restarting with stat
* Debugger is active!
* Debugger PIN: 777-325-398
류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
