Who could explain the follow issue ?
>>print u'Δ'
Δ
>>print u''
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\x80' in
position 0: il
legal multibyte sequence
>>>
or I just put the unicode number
>>print u'\u0394'
Δ
>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\u20ac' in
position 0:
illegal multibyte sequence
>>>
My terminal is cmd.exe under windows XP.
what's the different between the two character ? what can I do if I
want to print the u'\u20ac'? 7 5575
人言落日是天涯,望极天涯不见家 schrieb:
Who could explain the follow issue ?
>>>print u'\u0394'
Δ
>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\u20ac' in
position 0:
illegal multibyte sequence
My terminal is cmd.exe under windows XP.
what's the different between the two character ? what can I do if I
want to print the u'\u20ac'?
The problem is that your terminal uses (some form of) the GBK encoding;
see http://zh.wikipedia.org/wiki/GBK for details on GBK.
It seems that GBK (or, rather, code page 936) supports the delta
character, but not the euro sign.
To change that, you can use "chcp" in your terminal window.
For example, if you do "chcp 850", you should be able to
display the euro sign (but will simultaneously use the ability
to display the letter delta, and the chinese letters).
I don't know whether the terminal supports an UTF-8 code
page; you can try setting the terminal's code page to
65001 (which should be UTF-8).
Regards,
Martin
On 5月30日, 下午1时23分, "Martin v. Lo"wis" <mar...@v.loewis.dewrote:
人言落日是天涯,望极天涯不见家 schrieb:
Who could explain the follow issue ?
>>print u'\u0394'
Δ
>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\u20ac' in
position 0:
illegal multibyte sequence
My terminal is cmd.exe under windows XP.
what's the different between the two character ? what can I do if I
want to print the u'\u20ac'?
The problem is that your terminal uses (some form of) the GBK encoding;
seehttp://zh.wikipedia.org/wiki/GBKfor details on GBK.
It seems that GBK (or, rather, code page 936) supports the delta
character, but not the euro sign.
To change that, you can use "chcp" in your terminal window.
For example, if you do "chcp 850", you should be able to
display the euro sign (but will simultaneously use the ability
to display the letter delta, and the chinese letters).
I don't know whether the terminal supports an UTF-8 code
page; you can try setting the terminal's code page to
65001 (which should be UTF-8).
Regards,
Martin
Thanks, but it seems not work yet.
----------------------------------------------------
C:\WINDOWS>chcp 850
Active code page: 850
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python25\lib\encodings\cp850.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u20ac'
in position
0: character maps to <undefined>
C:\WINDOWS>chcp 65001
Active code page: 65001
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: unknown encoding: cp65001
-----------------------------------------------
I find that the u'\u20ac' related 'mbcs' encode is 0x80, I could print
it directly
>>print '\x80'
>>>
But the string contained the u'\u20ac' is get from remote host. Is
there any method to decode it to the local 'mbcs'?
On May 30, 3:05 pm, 人言落日是天涯,望极天涯不见家 <kelvin....@gmail.comwrote:
On 5月30日, 下午1时23分, "Martin v. Lo"wis" <mar....@v.loewis.dewrote:
人言落日是天涯,望极天涯不见家 schrieb:
Who could explain the follow issue ?
>>>print u'\u0394'
Δ
>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\u20ac' in
position 0:
illegal multibyte sequence
My terminal is cmd.exe under windows XP.
what's the different between the two character ? what can I do if I
want to print the u'\u20ac'?
The problem is that your terminal uses (some form of) the GBK encoding;
seehttp://zh.wikipedia.org/wiki/GBKfordetails on GBK.
It seems that GBK (or, rather, code page 936) supports the delta
character, but not the euro sign.
To change that, you can use "chcp" in your terminal window.
For example, if you do "chcp 850", you should be able to
display the euro sign (but will simultaneously use the ability
to display the letter delta, and the chinese letters).
I don't know whether the terminal supports an UTF-8 code
page; you can try setting the terminal's code page to
65001 (which should be UTF-8).
Regards,
Martin
Thanks, but it seems not work yet.
----------------------------------------------------
C:\WINDOWS>chcp 850
Active code page: 850
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python25\lib\encodings\cp850.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u20ac'
in position
0: character maps to <undefined>
C:\WINDOWS>chcp 65001
Active code page: 65001
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: unknown encoding: cp65001
-----------------------------------------------
I find that the u'\u20ac' related 'mbcs' encode is 0x80, I could print
it directly
>print '\x80'
But the string contained the u'\u20ac' is get from remote host. Is
there any method to decode it to the local 'mbcs'?
On May 30, 3:05 pm, 人言落日是天涯,望极天涯不见家 <kelvin....@gmail.comwrote:
On 5月30日, 下午1时23分, "Martin v. Lo"wis" <mar....@v.loewis.dewrote:
人言落日是天涯,望极天涯不见家 schrieb:
Who could explain the follow issue ?
>>>print u'\u0394'
Δ
>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'gbk' codec can't encode character u'\u20ac' in
position 0:
illegal multibyte sequence
My terminal is cmd.exe under windows XP.
what's the different between the two character ? what can I do if I
want to print the u'\u20ac'?
The problem is that your terminal uses (some form of) the GBK encoding;
seehttp://zh.wikipedia.org/wiki/GBKfordetails on GBK.
It seems that GBK (or, rather, code page 936) supports the delta
character, but not the euro sign.
To change that, you can use "chcp" in your terminal window.
For example, if you do "chcp 850", you should be able to
display the euro sign (but will simultaneously use the ability
to display the letter delta, and the chinese letters).
I don't know whether the terminal supports an UTF-8 code
page; you can try setting the terminal's code page to
65001 (which should be UTF-8).
Regards,
Martin
Thanks, but it seems not work yet.
----------------------------------------------------
C:\WINDOWS>chcp 850
Active code page: 850
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python25\lib\encodings\cp850.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u20ac'
in position
0: character maps to <undefined>
C:\WINDOWS>chcp 65001
Active code page: 65001
C:\WINDOWS>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.>>>print u'\u20ac'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
LookupError: unknown encoding: cp65001
-----------------------------------------------
I find that the u'\u20ac' related 'mbcs' encode is 0x80, I could print
it directly
>print '\x80'
But the string contained the u'\u20ac' is get from remote host. Is
there any method to decode it to the local 'mbcs'?
forgot to unicode(string) before send it?
??????????????? wrote:
But the string contained the u'\u20ac' is get from remote host. Is
there any method to decode it to the local 'mbcs'?
remote_string = u'\u20ac'
try:
local_string = remote_string.encode('mbcs')
except:
# no mbcs equivalent available
print "encoding error"
else:
# local_string is now an 8-bit string
print "result:", local_string
# if console is not mbcs, you should see incorrect result
assert result == '\x80'
Mbcs is windows-only so I couldn't test this.
If your application handles text, it may be easier to just leave everything
in Unicode and encode to utf-8 for storage?
Regards,
Tijs
On 5月30日, 下午9时03分, Tijs <tijs_n...@artsoftonline.comwrote:
??????????????? wrote:
But the string contained the u'\u20ac' is get from remote host. Is
there any method to decode it to the local 'mbcs'?
remote_string = u'\u20ac'
try:
local_string = remote_string.encode('mbcs')
except:
# no mbcs equivalent available
print "encoding error"
else:
# local_string is now an 8-bit string
print "result:", local_string
# if console is not mbcs, you should see incorrect result
assert result == '\x80'
Mbcs is windows-only so I couldn't test this.
If your application handles text, it may be easier to just leave everything
in Unicode and encode to utf-8 for storage?
Regards,
Tijs
Yes, it works, thank you.
But I doubt this way may not work on linux. Maybe I should write some
additional code for supporting both windows and linux OS.
浜鸿█钀芥棩鏄ぉ娑紝鏈涙瀬澶╂动涓嶈瀹 wrote:
Yes, it works, thank you.
But I doubt this way may not work on linux. Maybe I should write some
additional code for supporting both windows and linux OS.
Depends on what you want to do. Printing to a DOS terminal is hard in
Linux :-) If you write server code, best to keep all text in unicode.
--
Regards,
Tijs This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Joerg Lehmann |
last post by:
I am using Python 2.2.3 (Fedora Core 1). The problem is, that strings containing
umlauts do not work as I would expect. Here is my example:
>>> a = '漩'
>>> b = '123'
>>> print "%-5s...
|
by: Ricardo Bugalho |
last post by:
Hello,
I'm using Python 2.3.4 and I noticed that, when stdout is a terminal, the
'print' statement converts Unicode strings into the encoding defined by
the locales instead of the one returned by...
|
by: Anthony Liu |
last post by:
We know that if we do
print '\a'
the bell will sound.
Now, why do I hear the sound on my local machine when
I run a python script on a remote host?
I understand if I hear it when I do
|
by: sam |
last post by:
hi all,
i continue to footle around on my spanking new ultra 20 (1.8GHz /
Opteron Model 144), gradually trying to get to grips with python and
unix both.
the slow print time in IDLE had...
|
by: =?gb2312?B?yMvR1MLkyNXKx8zs0cSjrM37vKvM7NHEsru8+7z |
last post by:
I lookup the utf-8 form of delta from the link.
http://www.fileformat.info/info/unicode/char/0394/index.htm
and then I want to print it in the python ( I work under windows)
#!/usr/bin/python...
|
by: vinay.khankari |
last post by:
How to Print the complete source program as output of the program?
|
by: ramif |
last post by:
Is there a way to print extended ASCII in C??
I tried to code something, but it only displays strange symbols.
here is my code:
main()
{
char chr = 177; //stores the extended ASCII...
|
by: Ioannis Vranos |
last post by:
The following code does not work as expected:
#include <wchar.h>
#include <locale.h>
#include <stdio.h>
#include <stddef.h>
int main()
{
|
by: arnuld |
last post by:
I have created a program to print the input words on stdout. Input is
taken dynamically from stdin. In each word, each input character is
allocated dynamically. I have ran this program with a file...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
| |