python web.py乱码怎么解决?
324次观看
标签:
乱码
python
web
老师回答
web.py中的中文字符串在网页显示乱码解决方法如下:
#!/usr/bin/env python
# encoding: utf-8
import web
urls = (
'/', 'index'
)
class index:
def GET(self):
web.header('Content-Type', 'text/html;charset=UTF-8')
return "<h1>你好!</h1>"
if __name__ == "__main__":
app = web.application(urls, globals())
app.run()
更多Python知识请关注Python自学网
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐