新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)Python教程:pythonweb.py亂碼怎么解決?
web.py中的中文字符串在網(wǎng)頁顯示亂碼解決方法如下:

#!/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 "你好!
"
if __name__ == "__main__":
app = web.application(urls, globals())
app.run() 本文標(biāo)題:創(chuàng)新互聯(lián)Python教程:pythonweb.py亂碼怎么解決?
文章源于:http://fisionsoft.com.cn/article/dhdeshe.html


咨詢
建站咨詢
