python web.py乱码怎么解决?

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教程网

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python web.py乱码怎么解决?