博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小白学flask之hello,world
阅读量:4879 次
发布时间:2019-06-11

本文共 333 字,大约阅读时间需要 1 分钟。

from flask import Flaskapp = Flask(__name__)@app.route("/")def hello():    return "Hello World!"if __name__ == "__main__":
 
app.debug = True  #开启debug模式 每次修改代码不用重新启动py文件 app.run() #访问localhost:5000 一个hollo world就出来啦  #当然也可以在app.run里面指定端口和监听地址 app.run(host='127.0.0.1', port=8080)

 

转载于:https://www.cnblogs.com/wanghaonull/p/6337276.html

你可能感兴趣的文章
日常练习 1.0
查看>>
Linux下的Telnet设置方法介绍
查看>>
【mmall】学习Spring要善用Spring的Github
查看>>
css--小白入门篇4
查看>>
node.js的介绍
查看>>
WCF入门(七)——异常处理1
查看>>
VisualStudio Shell简介 — 集成插件
查看>>
php集成环境
查看>>
Ubuntu下的负载均衡Web集群配置
查看>>
Create a site by Google Site - All Free
查看>>
[诈骗]“中国移动”发送诈骗短信,china mobile 是骗子吗?
查看>>
Oracle调整内存超出限制出现ORA-27100: shared memory realm already exists问题解决办法
查看>>
玩转WIN7的MKLINK
查看>>
c# 微信分享-原始代码
查看>>
LA 3713 宇航员分组
查看>>
Recipe 1.11. Checking Whether a String Is Text or Binary(Python Cookbook)
查看>>
javascript兼容问题 : let降级到var 遇到的闭包问题的解决方法
查看>>
VC工程中后缀为.cpp,.h,.rc,.dsp,.dsw
查看>>
028-B+树(一)
查看>>
Bin Paking Problem:简单的构造性算法
查看>>