bottle用http默认端口 编程语言 bottle python 发布时间 : 2020-07-17 00:00 字数:43 阅读 : 123456789101112from bottle import Bottle, runweb = Bottle()@web.route('/')def index(): return "hello 80端口"run(web,host='localhost',port='80')#因为80是http的默认端口,所以这时访问localhost不需要写端口 转载请注明来源 https://tianweiye.github.io