473,396 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

how can i write a hello world in chinese with python

I'm try to build a bundle on OS X, so I write a simple python script
for a test:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("Hello,Mac!")
This runs OK,but when I try to replace "Hello,Mac!" with chinese, it
can't be display rightly.
Then I tried some way else:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("\xe4\xb8\xad")

It doesn't work!

As I know mac is unicode based,how can I display chinese on the screen?

Dec 13 '06 #1
7 2121
try unicode?

"kernel1983 дµÀ£º
"
I'm try to build a bundle on OS X, so I write a simple python script
for a test:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("Hello,Mac!")
This runs OK,but when I try to replace "Hello,Mac!" with chinese, it
can't be display rightly.
Then I tried some way else:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("\xe4\xb8\xad")

It doesn't work!

As I know mac is unicode based,how can I display chinese on the screen?
Dec 13 '06 #2
and I tried unicode and utf-8
I tried to both use unicode&utf-8 head just like "\xEF\xBB\xBF" and not
to use

Anyone knows about the setting in the python code file?
Maybe python doesn't know I'm to use chinese?!

On 12ÔÂ13ÈÕ, ÏÂÎç12ʱ47·Ö, "bearsprite" <bearspr...@gmail.com>
wrote:
try unicode?

"kernel1983 дµÀ£º
"
I'm try to build a bundle on OS X, so I write a simple python script
for a test:
#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("Hello,Mac!")
This runs OK,but when I try to replace "Hello,Mac!" with chinese, it
can't be display rightly.
Then I tried some way else:
#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("\xe4\xb8\xad")
It doesn't work!
As I know mac is unicode based,how can I display chinese on the screen?
Dec 13 '06 #3

kernel1983 wrote:
and I tried unicode and utf-8
How did you try unicode? Like this? :

EasyDialogs.Message(u'\u4e2d')
I tried to both use unicode&utf-8 head just like "\xEF\xBB\xBF" and not
to use

Anyone knows about the setting in the python code file?
Maybe python doesn't know I'm to use chinese?!
It depends on how EasyDialogs works. And by the way, when you say utf-8
encoded text is not displayed correctly, what do you actually see on
the screen?

-- Leo

Dec 13 '06 #4

Leo Kislov wrote:
kernel1983 wrote:
and I tried unicode and utf-8

How did you try unicode? Like this? :

EasyDialogs.Message(u'\u4e2d')
I tried to both use unicode&utf-8 head just like "\xEF\xBB\xBF" and not
to use

Anyone knows about the setting in the python code file?
Maybe python doesn't know I'm to use chinese?!

It depends on how EasyDialogs works. And by the way, when you say utf-8
encoded text is not displayed correctly, what do you actually see on
the screen?
There is a Windows version of EasyDialogs -- unfortunately it appears
not to support Unicode, even for the most simple case.

This works:
| >>EasyDialogs.Message('fubar')
but this doesn't:
| >>EasyDialogs.Message(u'fubar')

The title of the window is empty, the text consists of only 'f", and
there is no OK button.
Not very robust.

Dec 13 '06 #5
kernel1983 wrote:
I'm try to build a bundle on OS X, so I write a simple python script
for a test:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("Hello,Mac!")
This runs OK,but when I try to replace "Hello,Mac!" with chinese, it
can't be display rightly.
Then I tried some way else:

#!/usr/bin/env python
import EasyDialogs
EasyDialogs.Message("\xe4\xb8\xad")

It doesn't work!

As I know mac is unicode based,how can I display chinese on the screen?
EasyDialogs is an *ancient* module on OS X--it may not support unicode.
Try posting to the MacPython list, someone there can verify this.

--Kevin

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
Dec 13 '06 #6

Dennis Lee Bieber wrote:
On 12 Dec 2006 23:40:41 -0800, "kernel1983" <ke********@gmail.com>
declaimed the following in gmane.comp.python.general:
and I tried unicode and utf-8
I tried to both use unicode&utf-8 head just like "\xEF\xBB\xBF" and not
to use
"unicode" is a term covering many sins. "utf-8" is a specification
for encoding elements of specific unicode characters using 8-bit
elements (I believe by using certain codes x00 to x7F alone as "normal",
and then x80 to xFF to represent an "escape" to higher [16-bit] element
sets).

"\xEF\xBB\xBF" is just a byte string with no identifier of what
encoding is in use (unless the first one or two are supposed to be
BOM)... In the "Windows: Western" character set, it is equivalent to
small-i-diaeresis/right-guillemot/upside-down? () In MS-DOS: Western
Europe, those same bytes represent an
acute-accent/double-down&left-box-drawing/solid-down&left

I've not done any unicode work (iso-latin-1, or subset thereof, has
done for me). I also don't know Mac's, so I don't know if the windowing
API has specific calls for Unicode data... But you probably have to
encode or decod that bytestring into some compatible unicode
representation.
When you save a textfile as UTF-8 in Notepad.exe (Windows) it puts the
bytestring "\xEF\xBB\xBF" at the start to indicate that it's UTF-8 and
not ANSI (ie 8-bit characters). The bytes are actually the BOM
bytestring "\xFE\xFF" encoded in UTF-8.

Dec 14 '06 #7
thanks everyone
maybe this simple API doesn't fit the Chinese display
but thanks everybody!

At least I've got that what bundles is and maybe I can use Python to
write program

On 12ÔÂ14ÈÕ, ÉÏÎç6ʱ31·Ö, "MRAB" <goo...@mrabarnett..plus.com>
wrote:
Dennis Lee Bieber wrote:
On 12 Dec 2006 23:40:41 -0800, "kernel1983" <kernel1...@gmail.com>
declaimed the following in gmane.comp.python.general:
and I tried unicode and utf-8
I tried to both use unicode&utf-8 head just like "\xEF\xBB\xBF" and not
to use
"unicode" is a term covering many sins. "utf-8" is a specification
for encoding elements of specific unicode characters using 8-bit
elements (I believe by using certain codes x00 to x7F alone as "normal",
and then x80 to xFF to represent an "escape" to higher [16-bit] element
sets).
"\xEF\xBB\xBF" is just a byte string with no identifier of what
encoding is in use (unless the first one or two are supposed to be
BOM)... In the "Windows: Western" character set, it is equivalent to
small-i-diaeresis/right-guillemot/upside-down? () In MS-DOS: Western
Europe, those same bytes represent an
acute-accent/double-down&left-box-drawing/solid-down&left
I've not done any unicode work (iso-latin-1, or subset thereof, has
done for me). I also don't know Mac's, so I don't know if the windowing
API has specific calls for Unicode data... But you probably have to
encode or decod that bytestring into some compatible unicode
representation.When you save a textfile as UTF-8 in Notepad.exe (Windows) it puts the
bytestring "\xEF\xBB\xBF" at the start to indicate that it's UTF-8 and
not ANSI (ie 8-bit characters). The bytes are actually the BOM
bytestring "\xFE\xFF" encoded in UTF-8.
Dec 16 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Posadas, Dennis | last post by:
Hi, I've done some google searching w/c referred me to a couple of articles on unicode, but I'm looking for something really simple - not for a web application. See my sample code below. Any...
1
by: Anthony Liu | last post by:
The following 4 lines of code parses an XML document very well if the XML document contains only English words. But when I insert one Chinese character into the XML document, then Python starts...
33
by: Nick Evans | last post by:
Hello there, I have been on and off learning to code (with python being the second language I have worked on after a bit of BASIC). What I really want to know is, if you are going to actually...
1
by: Anthony Liu | last post by:
I believe that topic related to Chinese processing was discussed before. I could not dig out the info I want from the mail list archive. My Python script reads some Chinese text and then split...
2
by: =?gb2312?B?u7W1sA==?= | last post by:
It's really annoying to find there are all English language posts here because I wanna talk about something about the Chinese related programs. Could you give me some ?
1
by: James T. Dennis | last post by:
You'd think that using things like gettext would be easy. Superficially it seems well documented in the Library Reference(*). However, it can be surprisingly difficult to get the external details...
12
by: Steve Howell | last post by:
The never-ending debate about PEP 3131 got me thinking about natural languages with respect to Python, and I have a bunch of mostly simple observations (some factual, some anecdotal). I present...
0
by: devito | last post by:
hi there, for some days i try to build the boost.python tutorial "hello world" without bjam on winxp by using mingw. so i wrote a *.bat-file like the following: // --- snip...
0
by: Gerardo Herzig | last post by:
Hi all. Im having some "problems" with a small concurrent plpython function. Based on a small example about concurrent programming, there is some code which works fine under python: #!...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.