您现在的位置是:课程教程文章

python web.py乱码怎么解决?

2023-12-18 18:24课程教程文章 人已围观

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自学网

课程教程:python web.py乱码怎么解决?

上一篇:python udp不能接收数据怎么解决?

下一篇:没有了

站点信息

  • 文章统计篇文章