Bock wrote:
> I was just told about Python.  My searching and reading over the net
> I was able to learn that Python can handle "foreign" characters via
> Unicodes.  
> 
> Can or does Python write unicode to the screen? 

Yes. Just do

# -*- coding: iso-8859-1 -*-
print u"Martin v. Löwis"

in a Python script, and it should work.

If it doesn't, you should tell us what operating system and
what console program you are using.

Regards,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to