Home > Backend Development > Python Tutorial > wxPython窗口中文乱码解决方法

wxPython窗口中文乱码解决方法

WBOY
Release: 2016-06-06 11:20:02
Original
1339 people have browsed it

本文实例讲述了wxPython窗口中文乱码解决方法,分享给大家供大家参考。具体方法如下:

文件保存为 utf-8
文件开头添加 # -*- coding: utf-8 -*-
在有中文字符串前加u或U,例如:u”我的网站:http://www.bitsCN.com”

示例如下:

代码如下:

# -*- coding: utf-8 -*-
import wx
class App(wx.App):
 
    def OnInit(self):
        frame = wx.Frame(parent=None, title=u'我的网站:http://www.bitsCN.com')
        frame.Show()
        return True
 
app = App()
app.MainLoop()

Unicode字符串:

Unicode是书写国际文本的标准方法。如果你想要用你的母语如北印度语或阿拉伯语写文本,那么你需要有一个支持Unicode的编辑器。类似地,Python允许你处理Unicode文本——你只需要在字符串前加上前缀u或U。例如,u”This is a Unicode string.”。

此外还需要记住,在你处理文本文件的时候使用Unicode字符串,特别是当你知道这个文件含有用非英语的语言写的文本。

希望本文所述对大家的Python程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template