On 24 avr, 05:10, harrismh777 <harrismh...@charter.net> wrote:
>
>     I've been giving this some more thought. From the keyboard, all I am
> able to enter are character strings (not numbers). Presumably these are
> UTF-8 strings in python3.  If I enter ...


In Python 3, input() returns a unicode, a sequence/table/array of
unicode code point(s). No more, no less.

Similar to Python 2 where raw_input() returns a sequence/table/array
of byte(s). No more, no less.

jmf
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to