Learn Special Methods by Building a Vector Space - Step 6

Tell us what’s happening:

I initially finished my Scientific Computing with Python and was able to claim my certificate. Then this lesson popped up out of nowhere the next day. Was this just added to the curriculum?

Your code so far


# User Editable Region

class Vector:
    def __init__(self, x, y):
        self.x = x
        self.y = y
        
    def norm(self):
        self.norm = norm

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Special Methods by Building a Vector Space - Step 6

Yes.

This course is still beta so things will be changed.

if you already completed everything, you can ignore the new adds

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.