Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #10182

Re: Strings show as brackets with a 'u'.

Date 2011-07-24 03:06 +0200
From Thomas Jollans <t@jollybox.de>
Subject Re: Strings show as brackets with a 'u'.
References <d3c602cf-8a80-4035-9478-22d9b00022c2@r5g2000prf.googlegroups.com> <CAGGBd_qOfUV=DbHT6CW8EWJohxCS5e=-Kx07m_YdDj==G0zUkQ@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.1408.1311469574.1164.python-list@python.org> (permalink)

Show all headers | View raw


On 24/07/11 02:52, Dan Stromberg wrote:
> 
> It's probably a list containing a single unicode string.
> 
> You can pull the first element from the list with n[0].
> 
> To print a unicode string in 2.x without the u stuff:
> 
> print u'174'.encode('ISO-8859-1')

just
>>> print u'174'
will do.

Encoding the string by hand is only useful if Python doesn't know the
terminal's encoding, but you do.

> 
> On Sat, Jul 23, 2011 at 5:33 PM, goldtech <goldtech@worldpost.com
> <mailto:goldtech@worldpost.com>> wrote:
> 
> 
>     Hi,
> 
>     >>> n
>     [u'174']
>     >>>
> 
>     Probably newbie question but not sure how suppress the brackets and
>     the 'u' ? I assume pyhon is telling me it's a unicode string in the n
>     variable.
> 
>      I'm using using Idle on winXP, activestate 2.7. Is there a way to
>     suppress this and just show 174  in the shell ?
>     A script reading data and assigns 174 to n via some regex. Links on
>     this appreciated - I've tried to understand unicode before, will keep
>     trying...thanks.
> 
> 
>     --
>     http://mail.python.org/mailman/listinfo/python-list
> 
> 

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Strings show as brackets with a 'u'. goldtech <goldtech@worldpost.com> - 2011-07-23 17:33 -0700
  Re: Strings show as brackets with a 'u'. rantingrick <rantingrick@gmail.com> - 2011-07-23 17:48 -0700
  Re: Strings show as brackets with a 'u'. Chris Angelico <rosuav@gmail.com> - 2011-07-24 10:52 +1000
    Re: Strings show as brackets with a 'u'. Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2011-07-25 10:00 +0200
      Re: Strings show as brackets with a 'u'. rantingrick <rantingrick@gmail.com> - 2011-07-26 17:33 -0700
  Re: Strings show as brackets with a 'u'. Thomas Jollans <t@jollybox.de> - 2011-07-24 03:06 +0200
    Re: Strings show as brackets with a 'u'. goldtech <goldtech@worldpost.com> - 2011-07-26 18:18 -0700
      Re: Strings show as brackets with a 'u'. Terry Reedy <tjreedy@udel.edu> - 2011-07-26 23:04 -0400
        Re: Strings show as brackets with a 'u'. goldtech <goldtech@worldpost.com> - 2011-07-27 16:37 -0700
      Re: Strings show as brackets with a 'u'. Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-07-27 14:20 +1000

csiph-web