Learn Special Methods by Building a Vector Space - Step 62

Tell us what’s happening:

I’ve tried several methods of doing this. I have tried:

print(v1 != v2)

and

print(v1 != R2Vector(x=2, y=3))

and

print(f'{v1 != R2Vector(x=2, y=3)}')

and even

v6 = v1 != v2
print(f'v1 != v2 = {v6}')

And none of these work. I assume I must be missing something, but I don’t know what. Obviously for the operations where I directly call the v2 variable I changed v2 to it’s specified value. The correct value prints into the terminal, but the code doesn’t pass.

Your code so far

class R2Vector:
    def __init__(self, *, x, y):
        self.x = x
        self.y = y

    def norm(self):
        return sum(val**2 for val in vars(self).values())**0.5

    def __str__(self):
        return str(tuple(getattr(self, i) for i in vars(self)))

    def __repr__(self):
        arg_list = [f'{key}={val}' for key, val in vars(self).items()]
        args = ', '.join(arg_list)
        return f'{self.__class__.__name__}({args})'

    def __add__(self, other):
        if type(self) != type(other):
            return NotImplemented
        kwargs = {i: getattr(self, i) + getattr(other, i) for i in vars(self)}
        return self.__class__(**kwargs)

    def __sub__(self, other):
        if type(self) != type(other):
            return NotImplemented
        kwargs = {i: getattr(self, i) - getattr(other, i) for i in vars(self)}
        return self.__class__(**kwargs)

    def __mul__(self, other):
        if type(other) in (int, float):
            kwargs = {i: getattr(self, i) * other for i in vars(self)}
            return self.__class__(**kwargs)        
        elif type(self) == type(other):
            args = [getattr(self, i) * getattr(other, i) for i in vars(self)]
            return sum(args)            
        return NotImplemented

    def __eq__(self, other):
        if type(self) != type(other):
            return NotImplemented
        return all(getattr(self, i) == getattr(other, i) for i in vars(self))
        
    def __ne__(self, other):
        return not self == other

class R3Vector(R2Vector):
    def __init__(self, *, x, y, z):
        super().__init__(x=x, y=y)
        self.z = z

# User Editable Region

v1 = R2Vector(x=2, y=3)
v2 = R2Vector(x=0.5, y=1.25)
print(f'v1 = {v1}')
print(f'v2 = {v2}')
v3 = v1 + v2
print(f'v1 + v2 = {v3}')
v4 = v1 - v2
print(f'v1 - v2 = {v4}')
v5 = v1 * v2
print(f'v1 * v2 = {v5}')
print(v1 != v2)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn Special Methods by Building a Vector Space - Step 62

I also tried using the __ne__ method, although I might not have used it correctly

you need to compare v1 with the literal vector given R2Vector(x=2, y=3), not with v2

I thought that I’ve tried that

I did print(f'{v1 != R2Vector(x=2, y=3)}')

Or is that not what you mean?

are you asked to put it in a string?

Well no, but I tried print(v1 != R2Vector(x=2, y=3)) first and that didn’t work

is that the equality operator?

Ohhhhh. I understand it now.

Thanks for your help!