I have the following code embeded in a class.Whenever I run distToPoint it gives the error 'unsupported operand type(s) for -: 'NoneType' and 'float'' I don't know why it's returning with NoneType and how do I get the subtraction to work?

Both self and p are supposed to be pairs.

def __init__(self, x, y):
    self.x = float(x)
    self.y = float(y)
def distToPoint(self,p):
    self.ax = self.x - p.x
    self.ay = self.y - p.y
    self.ac = math.sqrt(pow(self.ax,2)+pow(self.ay,2)) 
link|improve this question

60% accept rate
1  
Your code (as given) does not produce this error. Please edit your code to give the simplest example which produces the error. – Hugh Bothwell Apr 11 '11 at 0:48
feedback

2 Answers

up vote 0 down vote accepted

For sake of comparison,

import math

class Point(object):
    def __init__(self, x, y):
        self.x = x + 0.
        self.y = y + 0.

    def distToPoint(self, p):
        dx = self.x - p.x
        dy = self.y - p.y
        return math.sqrt(dx*dx + dy*dy)

a = Point(0, 0)
b = Point(3, 4)

print a.distToPoint(b)

returns

5.0
link|improve this answer
feedback

You should check what value of p you are sending to the function, so that it has an x and y that are floats.

Old post (on second thought, I don't think you were trying to use distToPoint this way):

distToPoint doesn't return a value, this is probably the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.