Google News
logo
Flask - Quiz(MCQ)
What is default port in Flask?
A)
4208
B)
2050
C)
5000
D)
6060

Correct Answer :   5000


Explanation : By default the Flask application is executed in host = localhost port = 5000 So, if we want to change that configuration, we pass it to the run method app.run (host = "10.100.100.10", port = 9566)

Advertisement