Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'encode': 0.09; 'notation': 0.09; 'option:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:number': 0.09; 'encoding': 0.15; '3.1.3': 0.16; 'least,': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'syntax.': 0.16; 'wrote:': 0.17; 'tim': 0.18; '>>>': 0.18; 'least': 0.25; 'header:User- Agent:1': 0.26; 'header:X-Complaints-To:1': 0.28; '>>>>': 0.29; 'chase': 0.29; "skip:' 10": 0.30; 'skip:b 40': 0.32; 'dies': 0.33; 'to:addr:python-list': 0.33; 'another': 0.33; 'whatever': 0.35; 'subject:?': 0.35; 'received:org': 0.36; 'skip:u 20': 0.36; 'subject:: ': 0.38; 'instead': 0.39; 'to:addr:python.org': 0.39; 'skip:" 10': 0.40; 'header:Received:5': 0.40; 'skip:6 10': 0.63; 'subject:get': 0.81; 'do:': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: how to get character hex number? Date: Sat, 01 Sep 2012 08:37 +0200 Organization: None References: <50417631.1080508@tim.thechases.com> <50418609.8030902@tim.thechases.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084bc35.dip.t-dialin.net User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1346481430 news.xs4all.nl 6882 [2001:888:2000:d::a6]:46364 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:28207 Tim Chase wrote: > On 08/31/12 22:41, contro opinion wrote: >>>>>>> u"english".encode("utf-8") >>>> 'english' >>>>>>> u"english".encode("ascii") >>>> 'english' >>>> >>>> how can i get 656e676c697368 in encode method? >>> >>> At least in 2.x, you can do: >>> >>> >>> u"english".encode("hex") >>> '656e676c697368' >> >> how about in python3.0? > > Well, in 3.1.3 at least, using the u"..." notation dies on me with > an invalid syntax. However, as Ian suggests, you can do > > my_str = "english" > "".join("%02x" % c for c in my_str.encode("ascii")) > > or whatever other encoding you want instead of "ascii". Another option: >>> binascii.hexlify("english".encode()).decode() '656e676c697368'