Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!newsfeed.straub-nv.de!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'win32': 0.03; 'python3': 0.07; 'subject:same': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'subject:number': 0.09; 'subject:string': 0.09; 'subject:How': 0.10; 'python': 0.11; 'wrote': 0.14; '16)': 0.16; 'expert,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'skip:n 70': 0.16; 'subject:expression': 0.16; 'syntaxerror:': 0.16; 'bit': 0.19; '>>>': 0.22; 'question': 0.24; 'header:X -Complaints-To:1': 0.27; 'skip:( 20': 0.30; "skip:' 10": 0.31; '"",': 0.31; 'file': 0.32; 'subject:the': 0.34; 'but': 0.35; 'vice': 0.36; 'subject:?': 0.36; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'more': 0.64; 'frank': 0.68; 'invalid': 0.68; '011': 0.84; '2014,': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: "Frank Millman" Subject: Re: How to change the number into the same expression's string and vice versa? Date: Mon, 19 Jan 2015 11:26:30 +0200 References: X-Gmane-NNTP-Posting-Host: 197.86.222.237 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.3790.4657 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4913 X-RFC2646: Format=Flowed; Original 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: 63 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421659596 news.xs4all.nl 2898 [2001:888:2000:d::a6]:38909 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:84007 "contro opinion" wrote in message news:CA+YdQ_651X0NDPw1j203WGbeDTxy_Mw7g0w3VH1WoaGR1iv-Cg@mail.gmail.com... > In the python3 console: > > >>> a=18 > >>> b='18' > >>> str(a) == b > True > >>> int(b) == a > True > > > Now how to change a1,a2,a3 into b1,b2,b3 and vice versa? > a1=0xf4 > a2=0o36 > a3=011 > > b1='0xf4' > b2='0o36' > b3='011' > I am no expert, but does this answer your question ? C:\>python Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:38:22) [MSC v.1600 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> a1 = 0xf4 >>> a1 244 >>> b1 = '0x{:x}'.format(a1) >>> b1 '0xf4' >>> int(b1, 16) 244 >>> a2 = 0o36 >>> a2 30 >>> b2 = '0o{:o}'.format(a2) >>> b2 '0o36' >>> int(b2, 8) 30 >>> a3 = 011 File "", line 1 a3 = 011 ^ SyntaxError: invalid token >>> Frank Millman