Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #84017
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Subject | Re: How to change the number into the same expression's string and vice versa? |
| Date | 2015-01-19 16:41 +0000 |
| References | <CA+YdQ_651X0NDPw1j203WGbeDTxy_Mw7g0w3VH1WoaGR1iv-Cg@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.17854.1421685709.18130.python-list@python.org> (permalink) |
On 19/01/2015 09:01, contro opinion wrote: > > 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' > > Giving a completely different take on previous answers how about. a1, b1 = b1, a1 a2, b2 = b2, a2 a3, b3 = b3, a3 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: How to change the number into the same expression's string and vice versa? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-01-19 16:41 +0000
csiph-web