Re: [Tutor] hexodecimal to decimal form

2014-11-11 Thread William Becerra
Thank you for your time On 11 Nov 2014 15:02, "Dave Angel" wrote: > William Becerra Wrote in message: > > Hello, I'm new to programming using Python 2.7.8 and Windows 8 OSI'm > reading How to Think Like a Computer Scientist - learning with pythonon > chapter 12.2theres the following code: class

Re: [Tutor] hexodecimal to decimal form

2014-11-11 Thread Alan Gauld
On 11/11/14 09:00, William Becerra wrote: >>print blank <__main__.point instance at 0x02B38E40> the author says the the < 0x02B38E40> is in hexadecimal form Correct that's what the 0x at the front signifies. heres is my question: How can i convert from hexodecimal form to decimal form? Y

Re: [Tutor] hexodecimal to decimal form

2014-11-11 Thread Dave Angel
William Becerra Wrote in message: > Hello, I'm new to programming using Python 2.7.8 and Windows 8 OSI'm reading > How to Think Like a Computer Scientist - learning with pythonon chapter > 12.2theres the following code: class Point: passblank = point()blank.x = > 3.0blank.y = 4.0 >>>print b

[Tutor] hexodecimal to decimal form

2014-11-11 Thread William Becerra
Hello, I'm new to programming using Python 2.7.8 and Windows 8 OS I'm reading How to Think Like a Computer Scientist - learning with python on chapter 12.2 theres the following code: class Point: pass blank = point() blank.x = 3.0 blank.y = 4.0 >>print blank.x 3.0 >>print blank.y 4.0 >>prin