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